Billy Bagins
asked 9 years ago

I want to use my own icons for vote up / vote down buttons. What I have to do? I  mean, I can’t find any css rules on how  those grey arrows are created.

1 Answers
BigHug
answered 9 years ago

Hi Billy Bagins,
We use css pseudo “before” to add css and make the vote up/down button 

   .dwqa-container .dwqa-single-question .dwqa-vote a:before {
    content: "";
    border-bottom: 12px solid #999;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    top: 8px;
    left: 50%;
    margin-left: -12px;
    position: absolute;
}

You can overwrite it as you want to. 
Regards

Billy Bagins
replied 9 years ago

thanks! 🙂

Powered by DW Question & Answer Pro