@enot I got it @PitaJ, thanks for the help though.
The font name was the issue, should have been 'FontAwesome'.
I want to change the icons for upvote and downvote to thumb up and thumb down. How can I do that?
Thanks for any info!
@do-mgbk put this in custom CSS:
.votes .fa-chevron-up {
content: "\f164" !important
}
.votes .fa-chevron-down {
content: "\f165" !important
}
@dunlix said in How to change the icons:
@do-mgbk put this in custom CSS:
.votes .fa-chevron-up { content: "\f164" !important } .votes .fa-chevron-down { content: "\f165" !important }
@dunlix Thanks very much for the help! I also had to add before css in order for it to work
.votes .fa-chevron-up:before {
content: "\f164" !important
}
.votes .fa-chevron-down:before {
content: "\f165" !important
}