Last active
October 30, 2015 22:20
-
-
Save kohki-shikata/2d640369724f8a36f635 to your computer and use it in GitHub Desktop.
Disable Responsiveness on Foundation 5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.row { | |
max-width: none; | |
width: 960px; /* any width you want */ | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// add this | |
$('meta[class^="foundation"]').remove(); | |
//remove media queries foundation js add |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- <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
Thanks a lot, very helpful.