Skip to content

Instantly share code, notes, and snippets.

@jamesmehorter
Created March 24, 2015 13:00
Show Gist options
  • Save jamesmehorter/497a8b79f0f1e6253688 to your computer and use it in GitHub Desktop.
Save jamesmehorter/497a8b79f0f1e6253688 to your computer and use it in GitHub Desktop.
/* BEFORE */
.site-title {
background: url('images/logo.png') no-repeat;
height: 49px;
margin: 0;
padding: 0;
text-indent: -999em;
width: 268px;
}
/* AFTER */
.site-title {
width: 268px; height: 49px;
margin: 0; padding: 0;
text-indent: -999em;
background: url('images/logo.png') no-repeat;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment