Created
April 14, 2020 13:25
-
-
Save cre8tivediva/d4836cf982944060ac6418eb0de01b6c to your computer and use it in GitHub Desktop.
Magazine Pro - Change Full Width on Desktop to 800px (75%) and Return Mobile 840px to 100%
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
/* Make Full Width Content 800px or 75% on Desktop Only */ | |
.full-width-content .content { | |
width: 70%; | |
margin: 0 auto; | |
float: none; | |
} | |
/* Return Full Width Content to 100% on Media Query 840px */ | |
@media only screen and (max-width: 840px) { | |
.full-width-content .content { | |
width: 100%; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment