-
-
Save anunay/57fe56b099914130eb59 to your computer and use it in GitHub Desktop.
Disable Responsiveness on Foundation 5 Raw
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