Skip to content

Instantly share code, notes, and snippets.

@ryandejaegher
Last active March 30, 2020 11:41
Show Gist options
  • Select an option

  • Save ryandejaegher/a214f70dee06a4ca9844c11e2d288271 to your computer and use it in GitHub Desktop.

Select an option

Save ryandejaegher/a214f70dee06a4ca9844c11e2d288271 to your computer and use it in GitHub Desktop.
This code clones the social navigation header links in the Brine template of Squarespace and adds them to the hamburger menu. Useful for users who are using the hamburger menu in desktop view.
<script>
/* Use with the Brine Templates */
(function(){
var socialLinks = document.querySelector('.Header-social');
var socialLinksClone = socialLinks.cloneNode(true);
var mobileBar = document.querySelector('.Mobile-bar--top > div[data-nc-container="top-left"]');
mobileBar.appendChild(socialLinksClone)
}())
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment