Custom interest tables?

I've been wondering how to add custom interest tables for a while now but can't seem to find any code for it :( does anyone know how?


0 Kudos

Comments

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

D✟ZZY✮𖦹

D✟ZZY✮𖦹's profile picture

hello friendd! :3 heres the code i used to change mine (not my code tho,,)

:root {






--topic1: "name";
--topic2: "name";
--topic3: "name";
--topic4: "name";
--topic5: "name";
--topic6: "name";



}




.table-section:not(:last-child) .details-table td:first-child p {
margin: 0;
overflow-wrap: break-word;
word-break: break-word;
content-visibility: hidden;
}

.details-table td:first-child::after {
content-visibility: visible !important;
color: white;


}
.table-section:not(:last-child) .details-table tr:nth-child(1) td:first-child::after{
content: var(--topic1);
}
.table-section:not(:last-child) .details-table tr:nth-child(2) td:first-child::after{
content: var(--topic2);
}
.table-section:not(:last-child) .details-table tr:nth-child(3) td:first-child::after{
content: var(--topic3);
}
.table-section:not(:last-child) .details-table tr:nth-child(4) td:first-child::after{
content: var(--topic4);
}
.table-section:not(:last-child) .details-table tr:nth-child(5) td:first-child::after{
content: var(--topic5);
}
.table-section:not(:last-child) .details-table tr:nth-child(6) td:first-child::after{
content: var(--topic6);
}


Report Comment