i would like to know how to hide/remove the primary and secondary sidebar when reading a page or post.
actually i would like the two sidebars to appear only on home page
thanks
yiangos
The blog I need help with is sporting-u.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 know how to hide/remove the primary and secondary sidebar when reading a page or post.
actually i would like the two sidebars to appear only on home page
thanks
yiangos
The blog I need help with is sporting-u.com.
I see that you currently have the following CSS to hide one of the sidebars on posts in the Oxygen theme:
.single #content {
margin-right: 0;
}
.single #tertiary {
display: none;
}
If you wanted to hide both sidebars for single posts, you could replace the CSS above with this instead:
.single #content {
margin: 0;
}
.single #secondary,
.single #tertiary {
display: none
}
This topic has been closed to new replies.