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>


