Cory's profile picture

Published by

published
updated

Category: Web, HTML, Tech

CSS Snippet: Change "About Me" and "Who I'd Like To Meet" Text

Here's a small snippet on how to change the About Me and Who I'd Like To Meet text. Just change the "content" lines to say whatever you want, in the quotes.

<style>
.blurbs .inner .section:first-of-type h4{
font-size:0;
}
.blurbs .inner .section:first-of-type h4:after{
content:"About Me:";
font-size:.8rem;
}
.blurbs .inner .section:last-of-type h4{
font-size:0;
}
.blurbs .inner .section:last-of-type h4:after{
content:"Who I'd Like To Meet:";
font-size:.8rem;
}
</style>

Put this code wherever you have space in your profile.


60 Kudos

Comments

Displaying 7 of 7 comments ( View all | Add Comment )

kyle ★;

kyle   ★;'s profile picture

WWOWAHH TYTTY!!! :3


Report Comment

monique

monique's profile picture

thank uu!!


Report Comment

▄︻デ══━T0rd一~☆

▄︻デ══━T0rd一~☆'s profile picture

AHHH TYSMM


Report Comment

Nocturna

Nocturna 's profile picture

tysmmmm!!


Report Comment

kitty

kitty's profile picture

is there a way to change the color


Report Comment



i literally have been asking this for so long HOW HOW HOW

by brock; ; Report

}
.profile .blurbs .section h4 {
color: (add rbg code or color)

by Emixcoatl_draws; ; Report

The Very Least Person

The Very Least Person's profile picture

The person who created the layout I started with did something to hide the titles for the 'About me' and 'Who I'd like to meet' sections. Could you do me a big favor and tell me what I have to change to make those visible?


Report Comment



Hi! The code you would want to loo for looks something like this:
(depending on where you got it from it might have a label like this below)




.comments-table{display:none !important;}
.blurbs .heading{display:none !important;}
.blurbs .inner .section:last-of-type h4{display:none !important;
}


All you need to do is delete it and everything should work fine. Hope this helps!

by Tobias; ; Report

Shaitanshammer

Shaitanshammer's profile picture

Thanks! Just what I was looking for!


Report Comment