Skip to content

Instantly share code, notes, and snippets.

@jdelia
Last active March 6, 2017 00:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jdelia/80ac5c0131035682f734 to your computer and use it in GitHub Desktop.
Save jdelia/80ac5c0131035682f734 to your computer and use it in GitHub Desktop.
Adding SVG Logo to Utility Pro theme
.header-image .site-title a {
background: url(images/logo.svg) center center no-repeat;
float: left;
min-height: 60px;
width: 100%;
@include media($medium-screen-up) {
background-position: left center;
}
}
/* Logo, hide text */
.header-image .site-title a {
background: url(images/logo.svg) center center no-repeat;
float: left;
min-height: 60px;
width: 100%;
}
@media screen and (min-width: 1023px) {
.header-image .site-title a {
background-position: left center;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment