Okay
  Public Ticket #2825703
Color of Arrows
Closed

Comments

  •  1
    dave started the conversation

    Hello 

    How can I custom the prev/next arrows and change their color?

    Thanx,
    David

  • [deleted] replied

    Hi David,

    To change their color please add the code below to your Custom CSS area:

    .single-portfolio-holder .portfolio-big-navigation a i {
        color: blue;
    }
    To add your custom icon, you need to do more work, as you need to change the icon URL with CSS, those are the original CSS codes that you can rewrite:

    .flaticon-arrow427:before {
        content: "\e005";
    }
    .flaticon-arrow413:before {
        content: "\e003";
    }
    Thanks!

  •  1
    dave replied

    Sorry, not this arrows I was thinking of. Please see the arrows in the attachment. I would like to change the white color of the arrow (not link color) because when the background of the picture is white you can not see them.

  • [deleted] replied

    Hi Dave,

    Please add the code below to your Custom CSS area:

    .slick-slider .slick-next, .slick-slider .slick-prev {
        color: yellow !important;
    }
    Have a nice day!