代码在Squarespace的flatiron主题索引中创建一个不可点击的页面

时间:2014-05-14 05:38:21

标签: css squarespace

我希望有一个页面显示在我的索引页面中但不可点击(因此作为图像块)。我可以通过css或页眉代码注入实现这一点吗?有人知道吗?请帮忙!

1 个答案:

答案 0 :(得分:1)

首先,您需要找到您要编辑的div的ID。

使用squarespace flatiron演示作为示例,div是" yui_3_17_2_1_1405046742289_1089"

a#yui_3_17_2_1_1405046742289_1089 {

   /*disable the link */ pointer-events:none;
}

如果你想在图像上隐藏文字:

#yui_3_17_2_1_1405046742289_1089 .wrapper {display: none;}

}