Make blog posts use all available space, Sela theme
-
Hello..
Site adress: http://navigator101.wordpress.com
I am using the Sela theme and I would like to center the blog posts in the NEWS section. With that remove the right hand column and make the blog posts use all available space. Is this possible with some custom css?The blog I need help with is: (visible only to logged in users)
-
Hey navigator101,
I took a guess on the percentage, but try this out and see if you like it.
.blog .content-area { padding-left: 15%; } -
Hi @navigator101, give the following a try. What we are doing is to remove the left float (which aligns the content area to the left and then setting the left and right margins to “auto” so that they will remain the same no matter the window/screen width.
.blog .content-area { margin-left: auto; margin-right: auto; float: none; } -
- The topic ‘Make blog posts use all available space, Sela theme’ is closed to new replies.