Override vote icons in 4.1.4

Solved7.39K viewsCoreicons mods voting
0

Hi – is there any function that can override the voting icons ? I copied /includes/votes.php to /mytheme/anspress/includes/votes.php to make changes, but this doesn’t seem to work.

Any pointers ?

 

Thanks

Question is closed for new answers.
selected answer
1

Right – none of the functions or hooks here worked for me – they all generated an error, so I decided to change the CSS instead. For anyone else looking to change the voting icons, add this to your CSS

.apicon-thumb-up:before {
content: “\f102”;
font-family: “FontAwesome” !important;
}
.apicon-thumb-down:before {
content: “\f103”;
font-family: “FontAwesome” !important;
}

Use this guide to determine which code value you need

selected as best answer
You are viewing 1 out of 6 answers, click here to view all answers.