Skip to content

Instantly share code, notes, and snippets.

@andyreagan
Created March 17, 2015 00:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andyreagan/c790d614ece8cdd0c757 to your computer and use it in GitHub Desktop.
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!
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