Show fewer testimonials

Discussion in 'BlackBird WordPress Theme' started by earthspec, Mar 24, 2014.

Thread Status:
Not open for further replies.
  1. earthspec

    earthspec New Member

    Joined:
    Jul 4, 2013
    Messages:
    2
    Likes Received:
    0
    Hi,
    I want to have only one static testimonial. I have put this in the First Testimonial Text field. The other testimonials are blank, but when viewing the site it shows three testimonials. The one I added and then two with the default sample text that came with the theme. How can I remove the other two and only have one testimonial thats static.

    Thanks -
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .testimonial .slides_container .slide:nth-child(2) {
    display: none! important;
    }
    .testimonial .slides_container .slide:nth-child(3) {
    display: none! important;
    }
    .testimonial .slides_container .slide:nth-child(4) {
    display: none! important;
    }
    .testimonial .slides_container .slide:nth-child(5) {
    display: none! important;
    }
    .testimonial .pagination {
    display: none;
    }
    #slides_testimonial .prev {
    display: none;
    }
    #slides_testimonial .next{
    display: none;
    }
     

    Thanks & Regards
    Gourav Shrivastava
     
    earthspec likes this.
  3. earthspec

    earthspec New Member

    Joined:
    Jul 4, 2013
    Messages:
    2
    Likes Received:
    0
    That worked perfectly. Thank you!
     
Thread Status:
Not open for further replies.

Share This Page