How to reduce space between sidebar/widget area and content/body?
-
Hello friends! I am using the Hemingway Rewritten for my blog ” I would like to tighten the space between sidebar and content area
The blog I need help with is: (visible only to logged in users)
-
Hi there,
The sidebar is set to float to the right. Go to Customize > CSS and paste in the following custom CSS:
.site-content .widget-area { float: none; } -
-
Right now, this is what you have in your CSS:
.site-content .widget-area { float: right; }Using my browser inspector, I changed that code to this:
.site-content .widget-area { float: none; }Then I see the sidebar shift to the left.
Did you save your changes in the Customizer?
-
No, I don’t have dis code .site-content .widget-area {
float: right;
} on my css. I have go tru it -
The Customizer only shows custom CSS that you have added yourself. If you have not added any code, Additional CSS will be empty.
To see the existing CSS, you must use your browser’s developer tools or try to right-click on the sidebar and select “Inspect Element”
-
@skyafrica24, at WordPress.com, you add custom CSS to override the original CSS rather than to modify the existing CSS. Your custom CSS loads after the original CSS, so it takes precedence.
- The topic ‘How to reduce space between sidebar/widget area and content/body?’ is closed to new replies.