Buy me a coffee

How to remove Summary carousel arrows

If you want to remove arrows from Summary Carousel

Ca853d89329b95c5cc8a Min

You can use this code to Website Tools > Custom CSS

div.summary-carousel-pager {
    display: none !important;
}

8bd23e0432169548cc07 Min

If you want to do this for specific carousel, you can find Summary ID.

In my example, it is: #block-yui_3_17_2_1_1722512309861_3153

5184a6faaae80db654f9 Min

Next, use CSS code like this

#block-yui_3_17_2_1_1722512309861_3153 div.summary-carousel-pager {
    display: none !important;
}

83f557425a50fd0ea441 Min