« SpaceHey Forum

How do you change the titles of your interests??

Posted by Beaspoon

posted

Forum: SpaceHey

Screenshot of what I want to do (edited with inspect element) how do I change the title text, the part on the right that usually says movies. how do I change it from movies? ty ty 


Report Topic

1 Reply

Reply by ☣︎ flunita ☣︎

posted

paste this into the <style> section in your about me and im pretty sure it should work! replace the (topic) parts w the different titles u want ^.^

:root {

  --topic1: "(topic)";
  --topic2: "(topic)";
  --topic3: "(topic)";
  --topic4: "(topic)";
  --topic5: "(topic)";
  --topic6: "(topic)";

}

.table-section:not(:last-child) .details-table tr td:first-child p{
    color:transparent !important;
    text-shadow: none !important;
    letter-spacing: -100px;
}
.details-table tr td:first-child p::after{
   color:var(--links) !important;
   letter-spacing:normal !important;
   text-shadow: 2px 2px (put color for text here) !important;
   filter: brightness(95%) !important;
}
.table-section:not(:last-child) .details-table tr:nth-child(1) td:first-child p::after{
    content: var(--topic1);
}
.table-section:not(:last-child) .details-table tr:nth-child(2) td:first-child p::after{
    content: var(--topic2);
}
.table-section:not(:last-child) .details-table tr:nth-child(3) td:first-child p::after{
    content: var(--topic3);
}
.table-section:not(:last-child) .details-table tr:nth-child(4) td:first-child p::after{
    content: var(--topic4);
}
.table-section:not(:last-child) .details-table tr:nth-child(5) td:first-child p::after{
    content: var(--topic5);
}
.table-section:not(:last-child) .details-table tr:nth-child(6) td:first-child p::after{
    content: var(--topic6);
}


Permalink Report Reply