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.


123 Kudos