Last active
September 5, 2016 14:24
-
-
Save nickdavis/86fe7ad3cc35f28c1285983e32db2e68 to your computer and use it in GitHub Desktop.
Extract of style.css, showing an untested example of how you might adjust the mobile logo size (and space around it) on Kickstart Pro
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
@media only screen and (max-width: 900px) { | |
.header-image .site-title a { | |
min-height: 95px; /* You need to allow more space for the logo if you're doing this so increase the min-height to suit */ | |
} | |
.header-image .site-header .wrap { | |
/* background-size: 93px 48px;*/ /* Removes image resizing completely, otherwise you can uncomment it and adjust the size manually by changing the values (making sure to keep it in proportion to the original image */ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment