All Collections
FAQ's and Troubleshooting
How to make the Slider's module navigation arrows always visible
How to make the Slider's module navigation arrows always visible

Customize the Slider module to always show the navigation arrows

Eduard Ungureanu avatar
Written by Eduard Ungureanu
Updated over a week ago

Out of the box, the navigation arrows that the Slider or the Fullwidth slider module will only show if we hover over the Slider module.

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

  1. Open the Slider/Fullwidth Slider 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 below:

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