posted 1736731082
Forum: Web, HTML, Tech
View Topics View Profile
Title is self explanatory, I've tried a lot of things but nothing seemed to work. I know you can use text-transform to change properties (or whatever it's called) of the text, but I can't seem to find a way to change the text itself.
Thoughts?
Report Topic
posted 1737087741
Try diz:
<style>
.blurbs .heading h4{
visibility: hidden;
}
.blurbs .heading h4:before{
visibility: visible;
content: "Text you wanna add";
</style>
Permalink Report Reply