Increasing the main column width
- The topic ‘Increasing the main column width’ is closed to new replies.
Need help? Check out our Support site, then
Hi,
The main column width seems to be fixed at 660 pixels – is there a way to increase this?
Also, how do I rearrange “Posted on: May 6, 2015” to be directly above the title of each post? This is so that I can utilize the blank space under the date for my content. Hoping to show my images bigger than the fixed 660 pixel column.
Thanks!
The blog I need help with is: (visible only to logged in users)
Hello!
Do you have a WordPress Premium or business plan? If so, we might be able to make some CSS adjustments for you :)
Yes I do! Business plan premium
Great! The CSS code that I sent you in the other forum post should increase this :) For anyone else that is wanting to do the same, here’s the custom CSS that should work:
@media screen and (min-width: 805px){
.entry-body .entry-meta {
width: 13%;
}
.entry-body .entry-content {
width: 84%;
}
.sidebar {
float: right;
width: 29%;
}
}
Thanks! This works.
One more question:
I would like to decrease space between widgets in the sidebar, and I saw that someone asked the same q here but didn’t get an answer: https://premium-themes.forums.wordpress.com/topic/adjusting-space-between-widgets-in-sidebar?replies=3#post-66830
The first solution you provided allows the increasing of the space between widgets, but I’m hoping to decrease space.
Thanks!
Hey!
Try this CSS as well:
.sidebar .widget {
margin-bottom: 1em;
}
Let me know if that works!
That works! Thanks :)