• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

CSS question

sparkle

Senior member
Is there a way to define table properties using CSS.

For example, I would like to be able to use the tag < td class=&quot;dark&quot; > to apply a certain theme to certain cells. It seems like whenever I try to do this, I can only get it to effect the text properties.

here are some properties I would like to be able to change.

-bgcolor
-width
-align
-valign

Thanks much!
 
If you set the name property of the td cell you might have a better time at this.

<td name=&quot;dark&quot;>

now in javascript

document.all.dark.PROPERTY = whatever;
 
HTML Help.org

This should have the answers to all your questions. Or, for a quick answer:
-bgcolor
background-color

-width
width

-align
text-align

-valign
vertical-align


 
Back
Top