- This topic has 1 reply, 2 voices, and was last updated 9 years, 5 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Home › Community Forums › Optimal Theme Support › sticky posts problem on Home
Tagged: sticky posts
On our Home-Site(Front-Page) we would like have the 3 last posts (using the Genesis – Featured Posts Widget). Unfortunately, there are also 5 further sticky posts visible.
blog.appl.de
Is there are way, that the sticky posts are not shown on the Home-Site.
You could try adding display: none; – this code will hide it from being displayed. To have it hidden just for the homepage you can add this code to your css file around line 1318 in your css under “/* Sticky Posts”
.home .sticky {
display: none;
}