---
title: "Always Show Carousel Arrows Pinnacle"
source: "https://docs.nexcess.com/software/kadence/always-show-carousel-arrows-pinnacle/"
description: "To always display the carousel navigation arrows on your site, add this CSS to Theme Options> Custom CSS: .carousel_outerrim .next_carousel, .carousel_outerrim…"
vertical: "Software"
area: "Kadence"
date: "2021-08-11"
last_modified: "2021-08-11"
---

# Always Show Carousel Arrows Pinnacle

To always display the carousel navigation arrows on your site, add this CSS to Theme Options> Custom CSS:

```
.carousel_outerrim .next_carousel, .carousel_outerrim .prev_carousel, .carousel_slider_outer .next_carousel, .carousel_slider_outer .prev_carousel {
    ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    filter: alpha(opacity=60);
    -moz-opacity: .6;
    -khtml-opacity: .6;
    opacity: .6;
}
```
