Sure thing… For your first option, just add this CSS to your site…
.bbp-voting a.vote, .bbp-voting .score {
display: inline-block !important;
vertical-align: middle;
margin: 2px;
}
.bbp-voting a.vote.up:after {
top: -18px;
margin-left: -6px;
}
.bbp-voting a.vote.down:after {
top: 0px;
margin-left: -6px;
}
Thread Starter
ckubs
(@ckubs)
@natekinkead Managed to make It how I wanted https://ibb.co/3rX1Tfs Now since I have everything in my child theme css file, is there any way I can make the plugin not load it’s frontend CSS?
If you’ve completely replaced the need for the plugin to enqueue the default CSS, then you can update to the latest version of the plugin (1.3.2) and then add this to your theme’s functions.php file…
remove_action('wp_enqueue_scripts', 'bbp_voting_styles');