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
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
thanks! 🙂
Please login or Register to submit your answer