Skip to content

Instantly share code, notes, and snippets.

@nickdavis
Created July 18, 2016 13:38
Show Gist options
  • Save nickdavis/2ab354064021bb382c6b55b036648108 to your computer and use it in GitHub Desktop.
Save nickdavis/2ab354064021bb382c6b55b036648108 to your computer and use it in GitHub Desktop.
Edit logo file location in Kickstart Pro theme (replace the following two sections in your theme's style.css file or use a custom CSS plugin: https://themevalet.com/making-wordpress-css-adjustments-without-editing-theme/)
/* Logo, hide text */
.header-image .site-header .wrap {
background: url(http://yourwebsite.com/wp-content/uploads/2016/07/logo-1.png) no-repeat left center;
padding: 0;
}
@media only screen and (max-width: 900px) {
.header-image .site-header .wrap {
background: url(http://yourwebsite.com/wp-content/uploads/2016/07/logo-1.png) no-repeat 10px 10px;
background-size: 93px 48px;
padding: 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment