Squarespace开发人员模式href按钮或未点击的链接已禁用..已修复

时间:2015-03-19 13:42:56

标签: css href squarespace

我正在将Squarespace开发人员模式编辑到模板" .region"文件,我添加了像这样的库存标准HREF标签链接(它们应该正常工作):

 <a href="http://www.google.com">Link</a> 

但他们似乎被禁用了。他们没有点击通过。我无法在线或在Squarespace dev docs上找到任何文档。

1 个答案:

答案 0 :(得分:-1)

我找到了一个解决这个问题的工作,我希望这会帮助那里的人。我浪费了近一天的时间来研究这个问题(甚至联系他们的支持,他们没有得到答案)。

HTML代码

<a class="LINK" href="http://www.google.com">Link</a>

CSS代码

.LINK{
    position: relative;
    cursor: pointer;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
    display: inline-block;
    width: 20px; /* i was using this as i was adding icons - but maybe set this to auto*/
    height: 20px;/* i was using this as i was adding icons - but maybe set this to auto*/
    text-decoration: none;
    text-decoration-color: -moz-use-text-color;
    text-decoration-line: none;
    text-decoration-style: solid;
    transform: translateZ(0px);
}