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 wonderlandphotoimages.com.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
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 wonderlandphotoimages.com.
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.
~~TSP
Corrected and bookmarked!
Thanks
Whoops. Double reply there. :)
~~designsimply
Thanks :)
Wow! Thanks for the quick response! It worked perfectly :)
Awesome!
This topic has been closed to new replies.