I have a background image in a cell in a table. I don't want it tiled. How do I keep it from doing this?
I have a background image in a cell in a table. I don't want it tiled. How do I keep it from doing this?
no-repeat? What's your code?
Here's is the code:
<td background="../../flowers1.jpg" colspan="4">
Add this to your CSS code:
Good luck!Code:td { background-repeat: no-repeat; }
ok, this is what I have now:
<td background="../../flowers1.jpg" background-repeat: no-repeat>
and this is what it's showing on the site:
http://www.christianchurchofburlingt...inistries.html
I don't want the white strip in the flowers. Do I need a bigger picture maybe?
Use this instead:
I'd also like to suggest that you search for some tutorials about CSS in order to stop using inline styling and deprecated markup.HTML Code:<td background="../../flowers1.jpg" style="background-repeat: no-repeat;">
Good luck!
Thanks. I think I'll take your advice.
Bookmarks