Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Kerry

    (@bluenotes)

    Try adding the following CSS to your custom css area:

    .bne-testimonial-slider.bne-flexslider .flex-content {
         padding-bottom: 8px !important;
    }
    
    Thread Starter montymcmahon

    (@montymcmahon)

    That didn’t seem to make a difference.

    The CSS actually had this code (below) in there previously, which looks like it gives this a set height. I removed this and put in the code you suggested and it still looks the same.

    .bne_testimonial_slider_widget .bne-testimonial-slider .flex-content {
    height: 210px;
    }

    Plugin Author Kerry

    (@bluenotes)

    The class “bne_testimonial_slider_widget” is not showing on your markup are you using the testimonial widget or the shortcode? I’m also not seeing where you’re getting a height set.

    The css I displayed above does work in the browser. So I would need to see where you’re using/adding it. You can see it with the following screenshot where I’ve adjusted the bottom padding to 8px.

    Screenshot

    Thread Starter montymcmahon

    (@montymcmahon)

    Yes, sorry. It’s a shortcode in a widget.

    [bne_testimonials_slider nav=”false” arrows=”false” smooth=”true”]

    Plugin Author Kerry

    (@bluenotes)

    I see you added it to layout.css; however, the first part of it is incorrect. You have it as the following:

    .bne_testimonial_slider_widget .bne-testimonial-slider .flex-content {
        padding-bottom: 8px !important;
    }
    

    It needs to be this:

    .bne-testimonial-slider.bne-flexslider .flex-content {
        padding-bottom: 8px !important;
    }
    
    Thread Starter montymcmahon

    (@montymcmahon)

    Yes! Thank you!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Remove bottom padding’ is closed to new replies.