i have a problem! The sidebar only goes down as far as I have content in it. I need it to go all the way to meet the footer.... Can somebody help me???

Yeah it works, make 1 px height and max width image, put in background and repeat it... but if I have image in background allready: background: #DCEECF url(images/cms/kkk.jpg) no-repeat 0; and if in menu I go to (example: sitemap) the sidebar only goes down as far as I have content in it.KO wrote: Easiest way to do is by using so called "faux columns".
You might look at this first http://www.alistapart.com/articles/fauxcolumns
I am not great @ CSS, so....Sven A wrote: You should make the div that has the background image 100% height.
I've had the same question once and found a good solution at http://www.webmasterworld.com/forum83/200.htm
regards,
Sven
it will go to content end, but there still will be space between sidebar,content and footerKO wrote: Look this in the stylesheets
div#content {
margin: 1.5em auto 2em 0; /* some air above and under menu and content */
background: url(path-to-your-image/your-image.gif) repeat-y 0 0; /* <- Add this */
}
and make that bg image as it needs to be.