我的一个客户使用hayden模板在squarespace上有一个站点。他们在主页上有一个横幅图像(缩略图),文本和顶部的按钮链接。该按钮链接到联系人页面,但我也尝试将整个背景图像链接到外部URL。
我无法访问HTML,我只能添加自定义CSS。还有一个名为PAGE HEADER CODE INJECTION的东西(输入将被注入此页面标题的代码。)
我一直在尝试将jquery注入高级编辑器,但我想我可能会使用错误的ID或类?
这是我一直在尝试的。反正我有没有触摸HTML链接这个图像?
网站地址:www.ironathleteclinics.com
我将其注入标题:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
这就是页脚:
<script> $(document).ready(function(){ $('#collection-55dc8e2fe4b00187e448da91 .content-fill').css('cursor', 'pointer'); }); </script>
<script>$(function(){ $('#collection-55dc8e2fe4b00187e448da91 .content-fill').bind('click',function() { window.location = "www.google.com" }); });</script>
答案 0 :(得分:0)
我实际上刚刚在我的特殊情况下在海登模板上找到了它! 部首:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
页脚:
$('#promotedGalleryWrapper, .promoted-gallery-wrapper, .banner-thumbnail-wrapper, .sqs-featured-posts-gallery').css('cursor', 'pointer'); }); </script>
<script>
$(function(){
$('#promotedGalleryWrapper, .promoted-gallery-wrapper, .banner-thumbnail-wrapper, .sqs-featured-posts-gallery')
.bind('click',function() {
window.location = "http://www.athleteps.com/nike-weightlifting/"
});
});
</script>