Forum Moderators: not2easy

Message Too Old, No Replies

Background color

Set to transparent

         

Adam5000

4:35 pm on Nov 7, 2006 (gmt 0)

10+ Year Member



Thought I was done, wasnt' done.

I've got a page that has tables and paragraphs on it and I've set the color and background color for the table and paragraph. And I'm using a background image. And I'd like to set the background color to transparent for the table and paragraph. When I don't specifiy a background color, the background color is transparent. But I don't like to leave it open like that and count on the default for all browsers to be the same. Below is the code I'm using. Help!

<style type="text/css">
body {background: url(image_one.jpg) repeat}
table (color: ffffff; background-color: #ffffff}
p {color: #000000; background-color: #ffffff}
</style>

Setek

1:53 am on Nov 8, 2006 (gmt 0)

10+ Year Member



You can just change
background-color
to
transparent
for
table
and
p
:)

Adam5000

9:09 pm on Nov 10, 2006 (gmt 0)

10+ Year Member



Thank you Setec for your reply. That's helpful.