Increase the width of my blog posts
-
Hi!
I would like to increase the width of my blog posts so that there is not such a big gap between the posts and the sidebar. Could someone give me the css code for this?
Thank you.
The blog I need help with is: (visible only to logged in users)
-
Hi there, add the following to your custom CSS to lessen the space between the right sidebar and content. I’ve used a Media Query to limit this to screens/windows 1260px and wider as narrower than that the following makes them too close together.
@media screen and (min-width: 1260px) { #front-content-one { width: 75%; } }
- The topic ‘Increase the width of my blog posts’ is closed to new replies.