Okay
  Public Ticket #2381062
Scroll down arrow
Closed

Comments

  •  1
    jimmargraphics started the conversation

    Hi,

    I'm trying to increase the font size of the scroll down arrow. I've implemented the following css, but it's doesn't seem to change the arrow size:

    body .swiper-wrapper .slider-down-arrow i.icon-default-style[class^="icon-"] {
        font-size: 75px !important;
    }

    Can someone please help me with this issue?

    Thanks,

    Jim

  •  3,023
    Andrew replied

    Hi Jim,

    Try the following custom css:

    .swiper-wrapper [class*=" icon-"]:before{
        font-size:50px;
    }
    

    Kind regards.

  •  1
    jimmargraphics replied

    Perfect! Thank you Andrew!