Skip to content

Instantly share code, notes, and snippets.

@anunay
Forked from kohki-shikata/app.css
Last active November 16, 2017 16:30
Show Gist options
  • Save anunay/57fe56b099914130eb59 to your computer and use it in GitHub Desktop.
Save anunay/57fe56b099914130eb59 to your computer and use it in GitHub Desktop.
Disable Responsiveness on Foundation 5 Raw
.row {
max-width: none;
width: 960px; /* any width you want */
}
// add this
$('meta[class^="foundation"]').remove();
//remove media queries foundation js add
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0"> // this is original code -->
<meta name="viewport" content="width=device-width">
<!-- delete initial-scale on meta viewport -->
<!--
Markup with .small-* only on Grid structure
-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment