• Resolved mkaswell1

    (@mkaswell1)


    Hey guys,

    Can anyone point me in the direction of how to change the navigation arrows on the testimonials widget? I’m trying to change them to either font awesome arrows or dots. I imagine the edits involve flex-next -prev and I’ve played around with it a bit but can’t get it to change. Thanks!

Viewing 1 replies (of 1 total)
  • Plugin Author Kerry

    (@bluenotes)

    You would need to remove the background image and then use the :before pseudo class on the two navs.

    Here’s an example using HTML Unicode icons. Using FontAwesome would be the same idea but you would include the FA Unicode and font-family. In either case, you may need to adjust the position of them.

    .bne-testimonial-slider.bne-flexslider .flex-direction-nav .flex-prev,
    .bne-testimonial-slider.bne-flexslider .flex-direction-nav .flex-next { 
        background:none !important;
    }
    .bne-testimonial-slider.bne-flexslider .flex-direction-nav .flex-prev:before,
    .bne-testimonial-slider.bne-flexslider .flex-direction-nav .flex-next:before {
        content: "☜";
        color: #000;
        font-size:30px;
        top: -15px;
        left: -20px;
        display: block;
        position: absolute;
        text-indent: 0;
    }
    .bne-testimonial-slider.bne-flexslider .flex-direction-nav .flex-next:before {
       content: "☞";
        left: -5px;
    }
    
Viewing 1 replies (of 1 total)

The topic ‘Change nav arrows’ is closed to new replies.