Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1140387

    miket855
    Participant

    Hi, is it possible to change slider arrows (chevron right-left) to angle right and left that can be found on FontAwesome?
    I’ve tried locating .php file for slider but couldn’t find it…

    #1140480

    Rupok
    Member

    Hi there,

    Thanks for writing in! You can add this under Child Theme’s style.css :

    .flex-next .x-icon-chevron-right::before {
      content: "\f105";
      font-size: 50px;
    }
    
    .flex-prev .x-icon-chevron-left::before {
      content: "\f104";
      font-size: 50px;
    }

    Note that it won’t work on Customizer’s CSS and you need to use Child Theme’s CSS.

    Hope this helps.

    Cheers!

    #1140562

    miket855
    Participant

    Thanks a bunch!

    #1140819

    Rad
    Moderator

    You’re welcome!