« SpaceHey Forum

help! i tried changing the interests titles, but it only shows for me and nobody else?

Posted by milesofstars

posted

Forum: SpaceHey

i need some help with coding my profile! im an amateur at html (ive made a few mediocre websites and stuff in the past, so ive got a decent grasp of it) but i cant figure this out

ive been using a free code to change the names of the titles in the interest boxes on my profile, and when i check my profile it shows them, but when i switch to another account and look at the profile, or ask my friend to look at it, it always shows the original titles (general, music, movies, etc.)

ive been looking at practically every different tutorial and guide for doing this, and a few people have had the same issue, but i cant find a single answer anywhere! when i check the profiles of other people who've used the exact same code, i can see the changed text on their profiles just fine, but it just wont work for mine...

what am i doing wrong?? any help very much appreciated! if i find a solution ill make sure to say


Report Topic

2 Replies

Sort Replies:

Reply by sudofry

posted

Try replacing this





with this.


.details-table tr:nth-child(1) td:first-child p:first-child {
display: none;
}

.details-table tr:nth-child(1) td:first-child::after {
content: var(--topic1);
}

.details-table tr:nth-child(2) td:first-child p:first-child {
display: none;
}

.details-table tr:nth-child(2) td:first-child::after {
content: var(--topic2);
}

.details-table tr:nth-child(3) td:first-child p:first-child {
display: none;
}

.details-table tr:nth-child(3) td:first-child::after {
content: var(--topic3);
}

.details-table tr:nth-child(4) td:first-child p:first-child {
display: none;
}

.details-table tr:nth-child(4) td:first-child::after {
content: var(--topic4);
}

.details-table tr:nth-child(5) td:first-child p:first-child {
display: none;
}

.details-table tr:nth-child(5) td:first-child::after {
content: var(--topic5);
}

.details-table tr:nth-child(6) td:first-child p:first-child {
display: none;
}

.details-table tr:nth-child(6) td:first-child::after {
content: var(--topic6);
}


Permalink Report Reply

Reply by milesofstars

posted
updated

thank you so much!! i tried this code instead and the text showed up but using inspect on the actual page i realised it was inheriting colour from "--logo-blue", and adding code that said:

.details-table td:first-child{
color:rgb(246, 211, 147);
}

seemed to fix it!


Permalink Report Reply