site banner

Small-Scale Question Sunday for July 14, 2024

Do you have a dumb question that you're kind of embarrassed to ask in the main thread? Is there something you're just not sure about?

This is your opportunity to ask questions. No question too simple or too silly.

Culture war topics are accepted, and proposals for a better intro post are appreciated.

5
Jump in the discussion.

No email address required.

Custom CSS question: How do I change the colour of the vote arrows after they're clicked?

This is what I use.

.active.arrow-up::before {
    color: #bd2130;
}

.active.arrow-down::before {
    color: #0062cc;
}

It's not perfect when I'm using the Motte on my phone (need to tap somewhere else for the color to update) but works fine on my desktop browser.

Works a treat. Thanks!