Created
November 23, 2016 09:30
-
-
Save nickdavis/d187cb4c3d968ce449c5277960156994 to your computer and use it in GitHub Desktop.
Fix for Kickstart Pro v1.3.6 (and earlier) Home Row #4 post alignment issue which may occur under certain configurations of the Genesis - Featured Posts widget. If you are unsure how to tweak the CSS of your website, see: https://themevalet.com/making-wordpress-css-adjustments-without-editing-theme/
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-row4 .post:nth-child(odd) { | |
margin-left: initial; | |
} | |
.home-row4 .post:nth-of-type(odd) { | |
clear: left; | |
} | |
.home-row4 .post:nth-of-type(even) { | |
margin-left: 18%; | |
} | |
@media only screen and (max-width: 900px) { | |
.home-row4 .post, | |
.home-row4 .post:nth-child(odd), | |
.home-row4 .post:nth-of-type(even) { | |
margin: 0 auto 50px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment