替换Squarespace按钮上的文字

问题描述 投票:0回答:1

我试图修改一个按钮上自动插入的文字,你可以点击这个按钮来访问一个活动页面,我可以添加我想显示的文字('Je participe'),但不能隐藏自动插入的文字('Voir l'événement')。

这里是页面链接:maisonmariet.frevenements。

这是我的代码。

.eventlist-button.sqs-editable-button:before {
   display: none !important;
}
.eventlist-button.sqs-editable-button:after {
   content: 'Je participe →'!important;
}

谢谢你的时间和帮助!

css squarespace
1个回答
0
投票

只要设置 content: '' 对于 ::before

.eventlist-button.sqs-editable-button::before {
   content: '' !important;
}
© www.soinside.com 2019 - 2024. All rights reserved.