Created
January 30, 2017 23:04
-
-
Save carasmo/cbb492068a12eff2c4d3b75974230e69 to your computer and use it in GitHub Desktop.
Move date before title in featured posts widget
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
/* put date before title in featured post widget */ | |
.featuredpost .entry-title { | |
display: table-footer-group; | |
position: relative; | |
top: -5px; /* adjust as needed */ | |
} | |
.featuredpost .entry-meta { | |
display: table-header-group; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment