Title: Change nav arrows
Last modified: March 25, 2018

---

# Change nav arrows

 *  Resolved [mkaswell1](https://wordpress.org/support/users/mkaswell1/)
 * (@mkaswell1)
 * [8 years, 2 months ago](https://wordpress.org/support/topic/change-nav-arrows/)
 * 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](https://wordpress.org/support/users/bluenotes/)
 * (@bluenotes)
 * [8 years, 2 months ago](https://wordpress.org/support/topic/change-nav-arrows/#post-10113394)
 * 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.

 * ![](https://ps.w.org/bne-testimonials/assets/icon-256x256.png?rev=1408516)
 * [BNE Testimonials](https://wordpress.org/plugins/bne-testimonials/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/bne-testimonials/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/bne-testimonials/)
 * [Active Topics](https://wordpress.org/support/plugin/bne-testimonials/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/bne-testimonials/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/bne-testimonials/reviews/)

## Tags

 * [arrows](https://wordpress.org/support/topic-tag/arrows/)

 * 1 reply
 * 2 participants
 * Last reply from: [Kerry](https://wordpress.org/support/users/bluenotes/)
 * Last activity: [8 years, 2 months ago](https://wordpress.org/support/topic/change-nav-arrows/#post-10113394)
 * Status: resolved