Created
April 6, 2015 17:11
-
-
Save schaeken/f7c9e447695456d07fa4 to your computer and use it in GitHub Desktop.
Disable the "more" nav link from appearing on the navigation of the New Standard Shopify theme
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
{% comment %} | |
In http://www.shopify.com/admin/themes/current?key=assets/shop.js.liquid&line=48, add two slashes on line 48 so it looks like the one below: | |
{% endcomment %} | |
// standard.responsiveNav(); |
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
{% comment %} | |
In http://www.shopify.com/admin/themes/current?key=assets/style.scss.liquid&line=3142, add this at the very end of the code: | |
{% endcomment %} | |
#nav { | |
white-space: normal; | |
} | |
.nav-item { | |
padding: 10px 20px; | |
} | |
#nav>.nav-item { | |
border-left: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment