Table borders in Expressive

Apr 01, 2008 10:34

I've got a prompt table that was supposed to be a simple cut-and-paste - but with Expressive, the borders of the table don't show up at all. I checked with both Firefox and IE and the borders are just not there. Is this a weird bug thing with Expressive? The table's HTML code seems to work with other layouts, just not Expressive. I have ( Read more... )

entries:misc

Leave a comment

Comments 6

chasethestars April 1 2008, 21:01:33 UTC
This part in base.css hides the borders in tables from Expressive layouts:

h1, h2, h3, h4, h5, h6, p, blockquote, pre,
ol, ul, li, dl, dt, dd,
table, td, form, fieldset,
abbr, code {
margin: 0;
border: 0;
padding: 0;
font-size: 1em;
font-weight: normal;
}

Put this into the Custom CSS box:
table, td {
border: 1px solid;
}

Change "1px" to any number if you want a larger border. You can also define a color if you want with "border: 1px solid #ffffff".

Reply

boxer_ferret April 1 2008, 23:07:48 UTC
That will put borders on all tables, including where you don't want them like the sidebar calendar.

Reply

chasethestars April 1 2008, 23:15:04 UTC
.asset-body table, td {
border: 1px solid;
}

should apply to just the entry

Reply

ficmuse April 13 2008, 16:55:46 UTC
Thank you for this solution! I am very grateful for the assistance!

Reply


Leave a comment

Up