This is pretty easy. In the /* */ sections, I put in the normal thing it's called and also what my profile has it as. Put in what you want the text to be replaced with in the quotation marks.
There's ways to change parts of the text that aren't in this code. I don't remember what they are or how to do it because this code is not mine. If you want to change something not in here you will have to go searching for the original because I forgot.
THE CODE:
<style>
/* CONTACT, hit me up!! */
.contact .heading h4 {
font-size: 0;
}
.contact .heading h4:before {
font-size: 1rem;
content: "what you want";
}
/* */
/* INTERESTS, what i like */
.table-section:not(:last-child) .heading h4 {
font-size: 0;
}
.table-section:not(:last-child) .heading h4:before {
font-size: 1rem;
content: "what you want"
}
/* */
/* BLOG PREVIEW, blog */
.blog-preview h4 {
font-size: 0;
}
.blog-preview h4:before {
font-size: .8rem;
content: "what you want";
}
/* */
/* BLURBS, what's up? */
.blurbs .heading h4 {
font-size: 0;
}
.blurbs .heading h4:before {
font-size: 1.5rem;
content: "what you want";
}
/* */
/* ABOUT ME, about me */
.blurbs .section:nth-child(1) h4 {
font-size: 0;
}
.blurbs .section:nth-child(1) h4:before {
font-size: 1rem;
content: "what you want";
}
/* */
/* WHO I'D LIKE TO MEET, stamps */
.blurbs .section:nth-child(2) h4 {
font-size: 0;
}
.blurbs .section:nth-child(2) h4:before {
font-size: 1rem;
content: "what you want";
}
/* */
/* FRIENDS, my friends */
.friends:not(#comments) .heading h4 {
font-size: 0;
}
.friends:not(#comments) .heading h4:before {
font-size: .8rem;
content: "what you want";
}
/* */
/* COMMENTS, comments */
#comments .heading h4 {
font-size: 0;
}
#comments .heading h4:before {
font-size: .8rem;
content: "what you want";
}
/* */
</style>
Comments
Displaying 0 of 0 comments ( View all | Add Comment )