英文:
Replace text with CSS for woocommerce LOGIN page
问题
我正在尝试使用CSS替换文本,我正在使用这段代码但不起作用...
"https://monettia.com/mi-cuenta/"
"Register"文本
div.u-column2.col-2 h2{
visibility:hidden;
}
div.u-column2.col-2 h2{
content: '新文本';
}
谢谢
英文:
Im trying to replace a text with css, im using this code but not working...
https://monettia.com/mi-cuenta/
"Register" text
div.u-column2.col-2 h2{
visibility:hidden;
}
div.u-column2.col-2 h2{
content: 'new text';
}
Thanks
答案1
得分: 0
请尝试使用这个,我希望它能够起作用。这只是一种可能的工作方式
div.u-column2.col-2 h2{
position: relative;
}
div.u-column2.col-2 h2:after{
visibility: visible;
content: '新文本';
position: absolute;
left: 0;
top: 0;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
height: 100%;
background: gray;
}
英文:
Please try with this, i hope it will work. It is only idea that the work can be done in this way
div.u-column2.col-2 h2{
position: relative;
}
div.u-column2.col-2 h2:after{
visibility: visible;
content: 'new text';
position: absolute;
left: 0;
top: 0;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
height: 100%;
background: gray;
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论