Created
December 7, 2014 15:29
-
-
Save nickcernis/f48e7771fe43f9cbada2 to your computer and use it in GitHub Desktop.
AgentPress Pro Home Bottom featured posts instead of pages
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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