Hello Kriesi team,
I use your “content slider” on my website.
In the slider I show two buttons. I want to change the style in the settings of the content slider. I would like the control buttons as a circle. The problem is, on the cell phone, I can’t slide the slider back and forth with a swipe. However, if I set the control buttons as an arrow, the swipe on the cell phone works. Can you explain to me how I set the control button and still swipe on the phone?
Thank you very much for your information.
With best regards,
Severin
Hey Severin,
Thank you for the inquiry.
That is the default behavior of the navigations or of the content slider. If you want to enable both, you will have to modify the enfold/config-templatebuilder/avia-shortcodes/contentslider/contentslider.php file and adjust this block of code around line 769 so that both navigation display regardless of the set option in the element.
if( $navigation == 'dots' )
{
$output .= $this->slide_navigation_dots();
}
if( $navigation == 'arrows' )
{
$output .= $this->slide_navigation_arrows();
}
If you do not want the actual arrow to display, use this css to hide it.
.avia-slideshow-arrows.avia-slideshow-controls {
display: none !important;
}
Best regards,
Ismael