Skip to content

Instantly share code, notes, and snippets.

@manbearwolf
Last active November 21, 2017 21:15
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 manbearwolf/71a5a74f3adb31f43a463d9fd3ac8c26 to your computer and use it in GitHub Desktop.
Save manbearwolf/71a5a74f3adb31f43a463d9fd3ac8c26 to your computer and use it in GitHub Desktop.
.entry-content{
padding-left: 0px;
padding-right: 0px;
}
or
media query...
.full-width >*{
margin-left: 0;
margin-right: 0;
min-width: 1260px;
}
notes: can effect it's margins...
Got It Maybe...
define the class once... at top
.full-width {
margin-left: 0;
margin-right: 0;
width: 100%;
max-width: 1260px;
}
Both spots in main.scss
.entry-content > :not(.full-width),
.entry-content > :not(.full-width),
still a little off...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment