I am a novice, but managed to help myself with css etc. I am in the process to make a new Coppermine Theme. Everything works fine. I added a right sidebar. Questions is how do you make the sidebar move with the content. Meaning they must have the same height. I cannot state height as the gallery tags go in the main content. So you cannot always determine the height of the content div.
Any help? Site is not up and running yet. (Hope it make sense.)
/* Content*/
#content {
padding : 0;
margin-left : 200px;
margin-right : 5px;
color : #555;
background-color : #f7f7f7;
}
/* Sidebar */
#sidebar-a {
float : left;
width : 180px;
margin-left : 5px;
padding : 0 5px 0 5px;
color : #666;
background : #f7f7f7;
}
I included the css here. Everything resides inside a container tag.
