Created
July 18, 2016 13:38
-
-
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/)
This file contains hidden or 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
| /* 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