content and sidebar width
-
I am trying to get rid of the large sidebar on the left side using the GAzette theme. On the main page it is perfect but when i click on blog post there is sometimes a gray bar or a large white space (depending on what CSS code i use).
When I use this code it changes the blog post but messes up the main page causing the lines to be thrown off
.col-full {
width: 1140px;
}#main {
width: 800px;
}#sidebar {
width: 0px;
}#pagenav {
min-width: auto;The blog I need help with is: (visible only to logged in users)
-
Hello there!
Did you still want the post share links etc on the left? If so, this code should work:
.single .entry-content { max-width: 800px; width: 100% !important; } .single #comments { width: 100%; max-width: 800px; }By using the .single class selector it targets only the single post pages, so it won’t affect any other pages on your site.
Let me know if that doesn’t work,
Sage
- The topic ‘content and sidebar width’ is closed to new replies.