oxygen theme: how to hide/remove the sidebar when reading a post
-
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: (visible only to logged in users)
-
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 }
- The topic ‘oxygen theme: how to hide/remove the sidebar when reading a post’ is closed to new replies.