Hey there, I up editing a set of CSS code for my blog. Everything went well except for a little hiccup with my side bar. So what I want to achieve is to move the side bar to the complete left of the page so I can make more space for my content, but right now it floats to the left though with some extra space remaining to the left.
Those are the codes for my side bar. Anything wrong with them? Or does the issue lie somewhere else completely? Please help me if you could!
/* BASIC LAYOUT */
#contain, #footer-container {
margin: 0 auto;
width: 55em;
}
/* SIDEBAR */
#sidebar {
float: left;
margin: 0em;
width: 16em;
}
#sidebar p {
font-size: .9em;
}
#sidebar h1 {
font-weight: normal;
font-size: 2em;
line-height: 1.5em;
margin: 0;
padding: 0;
}
#sidebar h1 a, #sidebar h1 a:visited, #sidebar h1 a:active {
color: {color:Links};
font-weight: normal;
text-decoration: none;
}
#sidebar h1 a:hover {
color: {color:Link Hover};
}
#sidebar h1 a {
display: block;
}
#sidebar h4 {
font-size: 1em;
font-weight: bold;
margin: 0 0 .25em;
padding: 0;
text-transform: uppercase;
}
#sidebar #about {
margin: 0 0 3em;
}
#sidebar #twitter_div ul,
#sidebar #other ul {
list-style: none;
margin: 0 0 3em;
padding: 0;
}
#sidebar #twitter_update_list a {
display: block;
}
#sidebar #other a, #sidebar #other a:visited, #sidebar #other a:active {
font-size: .9em;
line-height: 2em;
padding-left: 0.75em;
}
Those are the codes for my side bar. Anything wrong with them? Or does the issue lie somewhere else completely? Please help me if you could!