View Full Version : Make all table backgrounds the same image?


Mike
08-10-2004, 12:49 AM
I tried this code to make all of my backgrounds the same for my tables:


<style type="text/css">
table
{
background: armour_bg.png;
}
</style>


No effect. helllllp meeee!

salomeyasobko
08-10-2004, 12:50 AM
it should be:

<style type="text/css">
table
{
background-image: url(armour_bg.png);
}
</style>

you were missing the -image and url( ) parts

:)

bourdelson
08-10-2004, 12:50 AM
Have you tried this?


<style type="text/css">
table
{
background-image: url('armour_bg.png');
}
</style>


Edit: Blah, Sal beat me. :P

Mike
08-10-2004, 12:52 AM
It worked, thanks guys (or girls... whatever you are)! Now I feel like an ub3r n00b3r!

salomeyasobko
08-10-2004, 12:56 AM
haha

you're welcome :)