Skip to content

Instantly share code, notes, and snippets.

@agusmu
Created October 24, 2013 01:05
Show Gist options
  • Save agusmu/7129596 to your computer and use it in GitHub Desktop.
Save agusmu/7129596 to your computer and use it in GitHub Desktop.
PrimaShop - Optimize For Big Screen
/* Optimize For Big Screen */
#container .container-inner {
width:1200px;
}
body.stylelayout-full .margin{
width:1200px;
}
body.stylelayout-boxed #container .container-inner {
width:1200px;
}
@media only screen and (max-width: 1200px) {
body.stylelayout-full .margin{
margin: 0 20px;
width: auto;
}
body.stylelayout-boxed #container .container-inner {
margin: 0 20px;
width: auto;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment