Created
February 26, 2017 22:11
-
-
Save nickdavis/1642ec8400d77af511d02390596cbad8 to your computer and use it in GitHub Desktop.
Kickstart Pro: remove transparent effect on site description text on tablet and mobile screen sizes (should be around line 3128, but may vary depending on the version of the theme you're using or if you've done any other modifications to it)
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) { | |
.site-description { | |
color: #fff; | |
opacity: 0.5; /* Remove or comment out this line */ | |
padding: 0 0 9px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment