« Web, HTML, Tech Forum

How can I change the name of my interests?

Posted by maxima

posted

Forum: Web, HTML, Tech

For example, I want to change "General" to "Games"



Report Topic

1 Reply

Reply by sudofry

posted


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

// Add new title to General.
.details-table tr:nth-child(1) td:first-child::after {
content: "New Title 1";
}

// And so on for the rest.

.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: "New Title 2";
}

.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: "New Title 3";
}

.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: "New Title 4";
}

.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: "New Title 5";
}

.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: "New Title 6";
}


Permalink Report Reply