Created
July 28, 2016 13:27
-
-
Save pro-beaver/ce2e06f03d564a580f6bfc87e157a8b5 to your computer and use it in GitHub Desktop.
Change Row Background Image to Background Color for mobile devices
This file contains 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
/** | |
* Change Row Background Image to Background Color for mobile devices | |
* assign pro-row-bg-1 class to the row | |
* | |
* @author Davinder Singh Kainth | |
* @link http://probeaver.com/?p=348 | |
* | |
*/ | |
@media only screen and (max-width: 768px) { | |
.pro-row-bg-1 .fl-row-content-wrap { | |
background: #b3d040; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment