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.
Printable View
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>
Code:body {
margin: 0px;
}
div#top {
background: #000 url("images/topbarbg.gif") repeat-x;
height: 50000px;
}
Thanks both - been a while since I've coded anything, bit rusty ;)