Table background not colored?
-
Hi, my blog is http://www.mandmigop.dk
I use a pice of code for getting my visitors to subscribe, it’s a table. (se it at the top here http://mandmigop.dk/2011/09/12/sig-fra/)
In my html I set the background color for orange, in my editor its orange… on my blog it’s white… why? Can I fix it?
/Morten
The blog I need help with is: (visible only to logged in users)
-
Instead of this:
<td style="text-align:center;" bgcolor="orange">
use this:
<td style="text-align:center;background-color:orange;"> -
-
-
You’ll have better control if you use hex color codes instead of basic color names. And you’re using outdated coding; these things don’t work:
width="100%" border="2" cellspacing="0" cellpadding="0"
Your table should be like that:<table style="border:2px solid #HEX;"> <tr> <td style="text-align:center;background-color:#HEX;"> CONTENT HERE </td> </tr> </table>Replace HEX with the colors you prefer. Good palettes here:
http://www.december.com/html/spec/color.htmlIf you wish to change the padding, you must add it to the td style.
Specifying a 100% width is superfluous, as it’s the default in the theme you’re using. -
Thx, IM not a coder. Found the one I’m using on a forum
But what if I change theme later. Still no need for 100%?
-
Depends on the theme. If you need it, you write:
<table style="width:100%;border:2px solid #HEX;">
- The topic ‘Table background not colored?’ is closed to new replies.