用CSS替换WooCommerce登录页面的文本。

huangapple go评论58阅读模式
英文:

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

huangapple
  • 本文由 发表于 2023年2月14日 04:59:20
  • 转载请务必保留本文链接:https://go.coder-hub.com/75441129.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定