Skip to content

Instantly share code, notes, and snippets.

@cre8tivediva
Created April 14, 2020 13:25
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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