• Resolved ckubs

    (@ckubs)


    Im having a problem where the vertical output of the plugin is quite tall and breaks some things here and there.

    Is there any way I could achieve this type of layout? https://ibb.co/xMDqr9x

    And thank you ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author natekinkead

    (@natekinkead)

    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?

    Plugin Author natekinkead

    (@natekinkead)

    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');

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Form height isue’ is closed to new replies.