Can someone make this here image;
http://www.fovq.com/site/november_2007/topbarbg.gif
Repeat along the top of a page with no gaps using CSS then I'd be much grateful.
I've had an **** of a time with this.
Can someone make this here image;
http://www.fovq.com/site/november_2007/topbarbg.gif
Repeat along the top of a page with no gaps using CSS then I'd be much grateful.
I've had an **** of a time with this.
body
{
background-color: #F0F1F1;
background-image: url(http://www.fovq.com/site/november_2007/topbarbg.gif);
background-repeat: repeat-x;
}
Code:// CSS #top { background: url(http://www.fovq.com/site/november_2007/topbarbg.gif); repeat: repeat-x; margin: 0px;}you may want to add height to it. I wasnt too sure if you wanted it on the background of the page or as a div. Use the above if you want it as the main background.Code:<!-- HTML --> <div id="top"></div>
Last edited by craigg.; 29-11-2007 at 05:09 PM.
Code:body { margin: 0px; } div#top { background: #000 url("images/topbarbg.gif") repeat-x; height: 50000px; }
Want to hide these adverts? Register an account for free!