Created
March 17, 2015 00:54
-
-
Save andyreagan/c790d614ece8cdd0c757 to your computer and use it in GitHub Desktop.
how to put an image before page title in wordpress, with just css!
This file contains 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
header.entry-header { | |
display: table; | |
padding-bottom: 20px; | |
} | |
header.entry-header:before { | |
content: url(https://wildflowerstudiobtv.files.wordpress.com/2015/03/flower.png?w=778); | |
display: table-cell; | |
vertical-align: middle; | |
} | |
header.entry-header h1 { | |
padding-left: 10px; | |
display: table-cell; | |
vertical-align: middle; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment