|
Re: how can I make this right bar bg go all the way down the page?
Quote:
Originally Posted by cullinanweb
wrap the whole thing in a div and set the background of that dive to the color you want so say
<div id="contentwrapper">
<div id="left">content for left</div>
<div id="right">content for right</div>
</div>
content wrapper and right would have the same background colors and left would be the other color.
you will also need to add a clear both fixing div
need any further help let me know.
|
I tried that its not working? What did I do wrong? Here is my css:
- Code: Select all
#contentandbar {
background-color: #FFD8A5;
clear:both;
}
Last edited by charlie019; Jul 31st, 2007 at 16:24.
|