Increase the text width
-
Hey Everyone,
Trying to figure out how to increase the width of full page posts using this theme.
If you have any suggestions that would be great!
Thanks
The blog I need help with is: (visible only to logged in users)
-
Hi there,
You can try CSS like this as a starting point:
@media screen and (min-width: 980px) { .post .entry-content { width: 920px; } }This will set the column width for your blog posts at 920 px. If the screen the site is viewed on is less than 980px (i.e. before you run out of room) the theme will switch back to the default column width.
You can edit the code to make the width any size you wish, but you will also want to edit the min-width value (the first one) to be bigger than the width value (the second one) to make sure that no text falls of the page.
Hope this helps!
-
- The topic ‘Increase the text width’ is closed to new replies.