• Hi all,

    First of all, thanks for this block – very useful!

    Could someone help me with customising the size of navigation elements (arrows, dots) – I’ve been trying to use CSS for that but all my attempts failed.

    Thanks!

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • you can assign them size and color by editing the values here:

    .wp-block-cb-carousel .slick-next:before, 
    .wp-block-cb-carousel .slick-prev:before {
      color: #fff !important;
      font-size: 25px !important;
    }
    

    but you may also need to adjust the positioning of the elements, depending on your layout/theme styles. This places the arrows on top of the slide, rather than before/after it:

    .slick-next {
      right: 45px;
      z-index: 1;
    }
    .slick-prev {
      left: 15px;
      z-index: 1;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Re-sizing navigation elements’ is closed to new replies.