vonchong115
09-05-2004, 10:17 PM
What's wrong with this CSS code? Everything except the background works. I also tried background-image: cellpic3.gif; but that didn't work either.
td
{ background: cellpic3.gif;
font-weight: bold;
color: #FF9900;
font-size: 10pt; }
Much help needed!
kittycat
09-05-2004, 10:25 PM
The one background line should be...
background-image: url(cellpic3.gif);
vonchong115
09-05-2004, 10:27 PM
Thanks, that was really helpful. :)
vonchong115
09-05-2004, 10:37 PM
Sorry for the double post but there's no edit button.
I also need help with this:
p
{ text-indent: 3em; }
It doesn't indent my paragraphs.
Also, when I post write type things in a table they always appear right in the center, is there a way I can put them at the top of the td with or without CSS?
in your TD css, add the valign like this....
td
{ background-image: url(cellpic3.gif);
font-weight: bold;
color: #FF9900;
font-size: 10pt;
vertical-align: top; }
as for your indenting P areas... 3em might be too small to notice. try making it a very large number to see if it is actually working and go from there.