Created
September 16, 2018 02:27
-
-
Save cre8tivediva/f20b913197d5cf719cd8114d183c5661 to your computer and use it in GitHub Desktop.
Essence Pro (Genesis) Archive Posts Side by Side like Blog Page
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
/* Essence Pro Archive Posts Side by Side like Blog Page | |
---------------------------------------------------------------------------------------------------- */ | |
.archive .content { | |
max-width: none; | |
width: 100%; | |
} | |
.archive .content .entry { | |
float: left; | |
margin-left: 4%; | |
text-align: center; | |
width: 48%; | |
} | |
.archive .content .entry:nth-of-type(odd) { | |
clear: left; | |
margin-left: 0; | |
} | |
@media only screen and (max-width: 1023px) { | |
.archive .content .entry { | |
float: none; | |
text-align: center; | |
width: 100%; | |
} | |
.archive .content .entry { | |
margin-left: 0; | |
text-align: center; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment