Skip to content

Instantly share code, notes, and snippets.

@kohki-shikata
Last active October 30, 2015 22:20
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kohki-shikata/2d640369724f8a36f635 to your computer and use it in GitHub Desktop.
Save kohki-shikata/2d640369724f8a36f635 to your computer and use it in GitHub Desktop.
Disable Responsiveness on Foundation 5
.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
-->
@after9
Copy link

after9 commented Aug 3, 2015

Nice! I exectly need this! Thanks~~

@RaulMVicente
Copy link

Thanks a lot, very helpful.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment