Hi, I'm desperately trying to solve this annoying issue! I'm trying to place the side bar just underneath the search bar, but I want it to be resized automatically, as each page has differing content so I cannot explicitly define the height. The CSS that is related is below,. If required, I can paste all CSS.
#sidebar {
background-color:#CCCCCC;
position:absolute;
top:0px;
right:265px;
width:15%;
height:200px;
}
#content {
margin: 10px 0px 10px 0px;
/*padding: 0px 0px 30px 0px;*/
float: left;
height:auto;
width: 847px;
overflow: hidden;
}
The site is at http://roots.sodesigns.co.uk/ and you can see where the sidebar currently sits- on the header!! Additionally, this is created in Wordpress. Your comments and help is much appreciated.
Thanks