@masterpiece8931 , yes, you (or a web developer) should be able to style anything about it with CSS. What about it would you like to make smaller? The score number, the arrows, or the labels? By the way, you could also remove the labels in the settings and that would make it take up much less space.
Thread Starter
Jhonny
(@masterpiece8931)
I wanted to reduce the size of it all (the arrows and the labels)
@masterpiece8931 , here is some CSS that you could use to make everything smaller (in the “Additional CSS” area of the theme Customizer, or somewhere else that you prefer):
div.bbp-voting .score {
font-size: 1rem;
}
div.bbp-voting .bbp-voting-label {
font-size: 0.6rem;
}
div.bbp-voting a.vote.up {
border-bottom-width: 10px !important;
border-left-width: 10px !important;
border-right-width: 10px !important;
}
div.bbp-voting a.vote.down {
border-top-width: 10px !important;
border-left-width: 10px !important;
border-right-width: 10px !important;
}
div.bbp-voting a.vote:after {
font-size: 0.8rem;
}