-
-
Save gbissland/bcd1de1e2023f6acbc436d7a0e362c2e 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