Page width wider
-
I would like to get rid of sidebar and have the images fill up the width of the page. How do I do this using Forever theme?
The blog I need help with is: (visible only to logged in users)
-
Yes, you can remove the sidebar with CSS. Add the following to the bottom of your custom CSS.
#secondary { display: none; } #content { margin: 0 38.0208% 0 3.64583%; max-width: 560px; } -
You can hide a sidebar with CSS.
To hide the sidebar in the Forever theme and make the main content area wider, add this to your Appearance → Custom Design → CSS:
#primary, #content { margin-right: 0; max-width: 890px; } #secondary { display: none; }Note that if you previously inserted images individually at a set smaller size, some of those images may need to be removed and then re-inserted from the media library at a larger size.
-
-
-
-
-
- The topic ‘Page width wider’ is closed to new replies.