lucien zeal's profile picture

Published by

published
updated

Category: Web, HTML, Tech

How to change every title on your profile

easy enough trick that i am not the creator of but this is mainly to have all of them in one place

copy and paste the sections you wanna edit or just all of it into a style tag in your about me then put your new title between the "" in the content line (for example content: "new title";)



    /* CONTACT */
.contact .heading h4 {
    font-size: 0;
}
.contact .heading h4:before {
    font-size: .8rem;
    content: "";
}
    /* */

    /* URL */
.url-info b {
    font-size: 0;
}
.url-info b:before {
    font-size: .8rem;
    content: "";
}
    /* */

    /* INTERESTS */
.table-section:not(:last-child) .heading h4 {
    font-size: 0;
}
.table-section:not(:last-child) .heading h4:before {
    font-size: .8rem;
    content: ""
}
    /* */

    /* INTERESTS - GENERAL */
.table-section:not(:last-child) tr:nth-child(1) td:nth-child(1) p {
    font-size: 0;
}
.table-section:not(:last-child) tr:nth-child(1) td:nth-child(1):before {
    font-size: .8rem;
    content: "";
}
    /* */

    /* INTERESTS - MUSIC */
.table-section:not(:last-child) tr:nth-child(2) td:nth-child(1) p {
    font-size: 0;
}
.table-section:not(:last-child) tr:nth-child(2) td:nth-child(1):before {
    font-size: .8rem;
    content: "";
}
    /* */

    /* INTERESTS - MOVIES */
.table-section:not(:last-child) tr:nth-child(3) td:nth-child(1) p {
    font-size: 0;
}
.table-section:not(:last-child) tr:nth-child(3) td:nth-child(1):before {
    font-size: .8rem;
    content: "";
}
    /* */

    /* INTERESTS - TELEVISION */
.table-section:not(:last-child) tr:nth-child(4) td:nth-child(1) p {
    font-size: 0;
}
.table-section:not(:last-child) tr:nth-child(4) td:nth-child(1):before {
    font-size: .8rem;
    content: "";
}
    /* */

    /* INTERESTS - BOOKS */
.table-section:not(:last-child) tr:nth-child(5) td:nth-child(1) p {
    font-size: 0;
}
.table-section:not(:last-child) tr:nth-child(5) td:nth-child(1):before {
    font-size: .8rem;
    content: "";
}
    /* */

    /* INTERESTS - HEROES */
.table-section:not(:last-child) tr:nth-child(6) td:nth-child(1) p {
    font-size: 0;
}
.table-section:not(:last-child) tr:nth-child(6) td:nth-child(1):before {
    font-size: .8rem;
    content: "";
}
    /* */

    /* LINKS */
.table-section:last-child .heading h4 {
    font-size: 0;
}
.table-section:last-child .heading h4:before {
    font-size: .8rem;
    content: "";
}
    /* */

    /* BLOG PREVIEW */
.blog-preview h4 {
    font-size: 0;
}
.blog-preview h4:before {
    font-size: .8rem;
    content: "";
}
    /* */

    /* BLURBS */
.blurbs .heading h4 {
    font-size: 0;
}
.blurbs .heading h4:before {
    font-size: .8rem;
    content: "";
}
    /* */

    /* ABOUT ME */
.blurbs .section:nth-child(1) h4 {
    font-size: 0;
}
.blurbs .section:nth-child(1) h4:before {
    font-size: .8rem;
    content: "";
}
    /* */

    /* WHO I'D LIKE TO MEET */
.blurbs .section:nth-child(2) h4 {
    font-size: 0;
}
.blurbs .section:nth-child(2) h4:before {
    font-size: .8rem;
    content: "";
}
    /* */

    /* FRIENDS */
.friends:not(#comments) .heading h4 {
    font-size: 0;
}
.friends:not(#comments) .heading h4:before {
    font-size: .8rem;
    content: "";
}
    /* */

    /* COMMENTS */
#comments .heading h4 {
    font-size: 0;
}
#comments .heading h4:before {
    font-size: .8rem;
    content: "";
}
    /* */



don't comment 'using' or 'thanks' i don't care.  ask questions if you need though


57 Kudos

Comments

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

z0_cr33py

z0_cr33py's profile picture

Hi!! Pretty silly question, and zero clue if it applies here—but how would one edit the "search users" text? I'm trying to add ">>" at the beginning of the label, but I've got ZERO clue how to do that T--T


Report Comment



i tried it out and it works the same as here, replacing the element name with ".center form" (no dot in front of form). if you only wanted to add the symbols then this should work

.center form:before {
font-size: .8rem;
content: ">>";
}

by lucien zeal; ; Report

Doesn't seem to be, unfortunately. Any idea on what I may be doing wrong?

by z0_cr33py; ; Report

Gosh, this is frustrating. It works FINE in inspect, but the moment I try to implement it on my page it reverts to the original text

by z0_cr33py; ; Report

Aoyagi Touya ✰

Aoyagi Touya ✰'s profile picture

The comments one doesn't seem to be working for me. It still shows "[Name] Friends Comments"


Report Comment



do you have any other code that could be affecting it, that is almost always the problem i don't know of any other fix

by lucien zeal; ; Report

azhton

azhton's profile picture

dum question but how do i change the colour >︿<


Report Comment



same way you'd change the colour of any text www.w3schools.com/css/css_text.asp

by lucien zeal; ; Report

ah thanks mb i do not understand this language at all

by azhton; ; Report

𝐖hisky💉

𝐖hisky💉's profile picture

TYSM OMG!!!!!!!!!!!!!!!!!!!!!!


Report Comment

yhan !!

yhan !!'s profile picture

HELP ON MY KNEES SOMEONE RESPOND NHSHSHSHS
i think the custom titles only show for me ,, can that be fixed ??


Report Comment



i've never seen this, do you have any other code that could be affecting those titles? also i looked on your profile and they show up fine for me if that's the worry

by lucien zeal; ; Report

rly ?? thank you so much for telling, i actually tampered with a few other things in my code after ts comment, so glad it either worked or smt else !!
anyway thank you !! livesaver frl

by yhan !!; ; Report

Frost-Bite

Frost-Bite's profile picture

What's wrong when the original title won't go away, just showing up after my custom title? :( It worked the first time I refreshed my profile but after that it was wrong


Report Comment

𝒱𝔞𝔢𝔥𝔪𝔭𝔦𝔯𝔢⋅𖹭𝒱𝔞𝔢𝔥

𝒱𝔞𝔢𝔥𝔪𝔭𝔦𝔯𝔢⋅𖹭𝒱𝔞𝔢𝔥's profile picture

thank you so much omgggg


Report Comment

𝒱𝔞𝔢𝔥𝔪𝔭𝔦𝔯𝔢⋅𖹭𝒱𝔞𝔢𝔥

𝒱𝔞𝔢𝔥𝔪𝔭𝔦𝔯𝔢⋅𖹭𝒱𝔞𝔢𝔥's profile picture

thank you so much omgggg


Report Comment

Losing brain

Losing brain's profile picture

you just saved my life thx!!!


Report Comment

F1NNEGAN

F1NNEGAN's profile picture

thank you you're like jesus


Report Comment