Disappearing Post
-
I am currently using the Oxygen theme. When I click on the showcased post, the post does not appear.
Here is the current CSS code that I am using right now.
.type-page .entry-title {
display:none;
}#primary {
display:none;
}#tertiary {
display:none;
}The blog I need help with is: (visible only to logged in users)
-
This part of your CSS is making the post disappear:
#primary { display:none; }What was your original goal when you added that CSS?
-
I was trying to hide the recent and more articles. Do you know the CSS code to hide these two items?
-
Sure. I would use this to completely hide those sections on the home page:
.home .recent-articles, .home .more-articles { display:none; }
- The topic ‘Disappearing Post’ is closed to new replies.