Skip to content

Instantly share code, notes, and snippets.

@cre8tivediva
Created April 14, 2020 13:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cre8tivediva/d4836cf982944060ac6418eb0de01b6c to your computer and use it in GitHub Desktop.
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%
/* 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