Skip to content

Instantly share code, notes, and snippets.

@nickcernis
Created December 7, 2014 15:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nickcernis/f48e7771fe43f9cbada2 to your computer and use it in GitHub Desktop.
Save nickcernis/f48e7771fe43f9cbada2 to your computer and use it in GitHub Desktop.
AgentPress Pro Home Bottom featured posts instead of pages
.home-bottom .featuredpost .entry {
width: 23.875%;
}
.home-bottom.full-width .featuredpost .entry:nth-of-type(3n+1) {
clear: none;
margin-left: 1.5%;
}
.home-bottom.full-width .featuredpost .entry:nth-of-type(4n+1) {
clear: both;
margin-left: 0;
}
@media only screen and (max-width: 768px){
.home-bottom.full-width .featuredpost .entry {
width: 49.25%;
}
}
@media only screen and (max-width: 480px) {
.home-bottom.full-width .featuredpost .entry {
width: 100%;
clear: both;
}
.home-bottom.full-width .featuredpost .entry:nth-of-type(3n+1) {
margin-left: 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment