« Web, HTML, Tech Forum

How to change "[username]'s Blurbs" to different text?

Posted by xander

posted

Forum: Web, HTML, Tech

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

1 Reply

Reply by Inccubus Fangzz

posted

Try diz:

<style>

.blurbs .heading h4{

  visibility: hidden;

}

.blurbs .heading h4:before{

  visibility: visible;

  content: "Text you wanna add"; 

}

</style>


Permalink Report Reply