« Helping each other Forum

Help finding code for customized interests + header? [closed]

Posted by scorp

posted

Forum: Helping each other

Hi!! I while ago I found a layout on here that allowed me to change the subheadings of my interests section (general, music, movies, ect. Image below.) but now I'm not able to find it. I don't quite know how to code to change them myself, so could anybody please send it to me if you have it or find it some time?

Additionally I want to change the "Who I'd Like to Meet:" section into something else to make it fit the way that I use it better, would anybody mind helping me with code for that? Thank you sm!!

 


Report Topic

2 Replies

Sort Replies:

Reply by suki

posted

this should fit what you're looking for. I don't know which interests you wanted to replace so I've put them all in. feel free to remove any of them you don't want to change, or just leave them there and don't change what they say. up to you


the list of interests is counted in descending order from 1 to 6. so "general" is 1, "heroes" is 6, etc etc. i've also included comments explaining which is which down where the actual text replacement happens.




.profile .blurbs .section:last-child h4,
table.details-table tbody tr:nth-child(1) td:first-child,
table.details-table tbody tr:nth-child(2) td:first-child,
table.details-table tbody tr:nth-child(3) td:first-child,
table.details-table tbody tr:nth-child(4) td:first-child,
table.details-table tbody tr:nth-child(5) td:first-child,
table.details-table tbody tr:nth-child(6) td:first-child {
visibility: hidden;
line-height: 0;
}

.profile .blurbs .section:last-child h4:after,
table.details-table tbody tr:nth-child(1) td:first-child:after,
table.details-table tbody tr:nth-child(2) td:first-child:after,
table.details-table tbody tr:nth-child(3) td:first-child:after,
table.details-table tbody tr:nth-child(4) td:first-child:after,
table.details-table tbody tr:nth-child(5) td:first-child:after,
table.details-table tbody tr:nth-child(6) td:first-child:after {
visibility: visible;
display: block;
line-height: initial;
}

/* who I'd like to meet */
.profile .blurbs .section:last-child h4:after {
content: "who i'd like to meet:";
}

/* general */
table.details-table tbody tr:nth-child(1) td:first-child:after {
content: "general";
}

/* music */
table.details-table tbody tr:nth-child(2) td:first-child:after {
content: "music";
}

/* movies */
table.details-table tbody tr:nth-child(3) td:first-child:after {
content: "movies";
}

/* TV */
table.details-table tbody tr:nth-child(4) td:first-child:after {
content: "television";
}

/* books */
table.details-table tbody tr:nth-child(5) td:first-child:after {
content: "books";
}

/* heroes */
table.details-table tbody tr:nth-child(6) td:first-child:after {
content: "heroes";
}



hope this helps!


Permalink Report Reply

Reply by scorp

posted

THANK U SO MUCH :DD


Permalink Report Reply

scorp closed this Forum Topic