Welcome

This code snippet library features advanced modifications you can make to customize your Squarespace 5 site. While we do not provide custom programming support, we've assembled the following guides as a reference to help you get started.


HTML Guide

CSS Guide

Javascript Guide

Wednesday
Sep082010

Remove the Banner Image Link

Example: Remove the link from your header banner. 

Note: This script removes the 'a href' link from your site header banner; the banner image will appear but without being linked.

/* Apply to all pages in your site. */

In Extra Header Code Injection put:

<script src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){
$('#bannerWrapper').remove('a').append($('#banner'));
});</script>

/* Apply to a specific page in your site. */

In Extra Header Code Injection put:

<script src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){
$('#modulePage1234567 #bannerWrapper').remove('a').append($('#banner'));
});</script>
« Remove the New Browser Prompt On Links Pages | Main | Replace the "Entries In" Category Overview Page Text »