Posted by themagicm on June 1, 2012 at 10:51pm
BlogBuzz for 7.x drupal is what I'm using.. my site... www.thegeekprophet.com.
If you look at the left part, I just want to remove that extra space.
TIA!
BlogBuzz for 7.x drupal is what I'm using.. my site... www.thegeekprophet.com.
If you look at the left part, I just want to remove that extra space.
TIA!
Comments
Not entirely sure I know what
Not entirely sure I know what space you are talking about a screenshot would help.
If you are talking about the space between the main content area and the sidebar just remove 10px from .sidebar-first #sidebar-left so it would become
.sidebar-left #sidebar-left {float: left;
width: 250px;
margin-left: 700px;
margin-right: -960px;
}
After I made the comment it
After I made the comment it dawned on me that you may be talking about the margin on the left as being a sidebar. In that case you would do something like
#main-inner {margin-left: 100px;
}