 
	
		Tagged: content slider, controls, enfold
Hello, I am trying to make a content slider with both arrows and dots. It is there a simple way of doing this?
Hey talawar,
Thank you for using Enfold.
This is possible but you need to modify the config-templatebuilder > aviashortcodes > contentslider > contentslider.php file. Look for this code around line 464:
	if($slide_count > $columns && $type == 'slider' && $navigation != 'no')
	            {
	                if($navigation == 'dots') $output .= $this->slide_navigation_dots();
                    if($navigation == 'arrows') $output .= $this->slide_navigation_arrows();
	            }
Remove the condition so that both navigation display.
	if($slide_count > $columns && $type == 'slider' && $navigation != 'no')
	            {
	                $output .= $this->slide_navigation_dots();
                        $output .= $this->slide_navigation_arrows();
	            }
Best regards,
Ismael
