Squarespace 开发人员模式 href 按钮或链接无法点击已禁用。已修复

Squarespace developer mode href buttons or links not clicking through disabled.. FIXED

我正在对模板“.region”文件进行 Squarespace 开发人员模式编辑,我添加了标准的 HREF 标签链接,如下所示(它们应该有效):

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

但它们似乎被禁用了。他们不会点击。我在网上或 Squarespace 开发文档上找不到任何文档。

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

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);
}