Skip to content

Instantly share code, notes, and snippets.

@nickdavis
Created February 26, 2017 22:11
Show Gist options
  • Save nickdavis/1642ec8400d77af511d02390596cbad8 to your computer and use it in GitHub Desktop.
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)
@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