I am having problems adjusting the top margin of the sidebar of my blog @ brandamgblog.com. The sidebar begins much lower than the main content area. Does anyone know how I can adjust the margin?
I am having problems adjusting the top margin of the sidebar of my blog @ brandamgblog.com. The sidebar begins much lower than the main content area. Does anyone know how I can adjust the margin?
I still cannot figure out how to bring the sidebar down. Someone PLEASE HELP!
In your stylesheet you have
#content {
margin: 1em 215px 1.5em 15px;
margin-top: -50px;
font-size: 1.1em;
}
Which pulls up the content 50px into the header so ...
either remove the line with -50px or add margin-top: -50px;
into the style for the sidebar so it will say
#navi-innen {
margin-top: -50px;
padding: 0 0px 10px 15px;
margin-top: 0px;
}
This topic has been closed to new replies.