Me1000 macrumors 68000 Original poster Jul 15, 2006 1,794 4 Nov 21, 2006 #1 ok well i have a background image on a table and i want it to repeat horizontally, but not vertically... I know there is a simple way to do it, but i dont remember how. any help?? Thanks!
ok well i have a background image on a table and i want it to repeat horizontally, but not vertically... I know there is a simple way to do it, but i dont remember how. any help?? Thanks!
monke macrumors 65816 May 30, 2005 1,437 3 Nov 21, 2006 #2 If you are doing it in CSS, it should be something like: Code: background-repeat: repeat-x; Or something close to that.
If you are doing it in CSS, it should be something like: Code: background-repeat: repeat-x; Or something close to that.
Me1000 macrumors 68000 Original poster Jul 15, 2006 1,794 4 Nov 21, 2006 #3 Thanks that did it... for reference (for anyone who wants it) here is the code... Code: <td valign="top" background="images/template_05.jpg" bgcolor="#D0AA6F" style="background-repeat: repeat-x;" ><p align="center">Coming Soon! </p> </td>
Thanks that did it... for reference (for anyone who wants it) here is the code... Code: <td valign="top" background="images/template_05.jpg" bgcolor="#D0AA6F" style="background-repeat: repeat-x;" ><p align="center">Coming Soon! </p> </td>