I'd like to remove the sidebar completely on my post pages because I need more horizontal space for my photos. I'm not sure how to modify the CSS, though...Any help?
Thanks! :)
The blog I need help with is ehmli.wordpress.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'd like to remove the sidebar completely on my post pages because I need more horizontal space for my photos. I'm not sure how to modify the CSS, though...Any help?
Thanks! :)
The blog I need help with is ehmli.wordpress.com.
To remove the sidebar and expand the main content area, add the following to your Appearance → Custom Design → CSS editor:
#primary {
width: 100%;
}
#secondary {
display: none;
}
And then update the limit width to 980 on your Appearance → Custom Design → CSS settings (near the bottom of the page).
This topic has been closed to new replies.