Reducing the sidebar column width with CSS
-
Can someone help me with the CSS specifics needed to reduce the width of the sidebar on the left of my blog?
The blog I need help with is: (visible only to logged in users)
-
Just to be sure, did you want the main content area size changed? (That is what’s on the left), or did you want the sidebar on the right to be narrower?
If it’s the latter, try this CSS to see if you like the new size better:
#main .widget-area { float: right; margin-right: 9.464285714286%; width: 25%; } -
And, if it’s the former, try this code:
#main .widget-area { float: right; margin-right: 9.464285714286%; width: 41%; } -
-
- The topic ‘Reducing the sidebar column width with CSS’ is closed to new replies.