Skip to main content
All CollectionsTroubleshooting and FAQsFrequently Asked QuestionsSlider Module
How to Make the Slider's Module Navigation Arrows Always Visible
How to Make the Slider's Module Navigation Arrows Always Visible

Learn how to make navigation arrows in Divi’s Slider Module always visible for improved user interaction and seamless navigation.

Updated over 3 months ago

Ensuring that navigation arrows in your slider module are always visible can enhance user interaction by making navigation intuitive and straightforward.

Having the arrows visible all the time helps users easily navigate through slides without the need to hover over the slider.

This article will guide you through the steps to make the navigation arrows in Divi’s Slider Module always visible, ensuring a user-friendly and engaging browsing experience.

The navigation arrows that the Slider or the Fullwidth Slider modules will only show if we hover over the module.

How to make the Slider/Fullwidth Slider's navigation arrows always visible

  1. Open the Slider/Fullwidth Slider module settings

  2. Go to Advanced Tab → Custom CSS → Free-Form CSS

  3. Paste in this code:

selector .et-pb-slider-arrows a.et-pb-arrow-prev,
selector .et-pb-slider-arrows a.et-pb-arrow-next {
opacity: 1;
}
selector .et-pb-slider-arrows a.et-pb-arrow-prev {
left: 22px;
}

selector .et-pb-slider-arrows a.et-pb-arrow-next {
right: 22px;
}

Note: We are using the selector as the parent CSS selector. This is a special function of Divi, which will replace that keyword selector with the actual CSS selector of the slider.

The result can be seen in the screenshot below:

Slider Module with always on Navigation arrows
Did this answer your question?