removing left side-bar space on individual posts
-
How do I center the text on each individual blog post instead of having it moved to the right with an open column on the left?
The blog I need help with is: (visible only to logged in users)
-
Hi there! You can try the following CSS it should make things behave the way you want :)
.single .hentry .entry-content { float: left; padding-left:25% }Please let me know if that works for you!
-
Hi @sarahdille, an alternative to the above code by @crazywickedawesome would be the following. It keeps the content width the same as it was, but centers it below the image above.
.single .hentry .entry-content { float: none; margin-left: auto; margin-right: auto; }@crazywickedawesome, many thanks for your help in the forums. It is very much appreciated. :)
-
-
- The topic ‘removing left side-bar space on individual posts’ is closed to new replies.