Hello,
I am trying to have the content slider so that is uses the arrows navigation, but also lists the slide titles which link to each slide, example
< S1 S2 S3 S4 >
And you can either skip through using the nav arrows or click on each S to jump to that slide, any thoughts? really not getting anywhere, i have managed to product a text list of each slide title, but its trying to formulate the links that is proving problematic, as obv the #prev and #next on the arrows doesn’t individually link to anything its just a command to step through (although i can’t get the prev and next to work when i manually enter it as the link for my list of S’s).
I didn’t test this but you can try following code modification. Open up and replace /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contentslider.php
if($navigation == 'dots') $output .= $this->slide_navigation_dots();
with
$output .= $this->slide_navigation_dots();
and
$html .= "<a href='#{$i}' class='goto-slide {$active}' >{$i}</a>";
with
$html .= "<a href='#{$i}' class='goto-slide {$active}' >{$this->config['content'][($i-1)]['attr']['title']}</a>";
and add following code to the quick css field
.avia-content-slider .avia-slideshow-dots a {
height: auto;
width: auto;
border-radius: 0;
background: #000;
opacity: 1;
filter: alpha(opacity=100);
text-indent: 0;
padding: 5px;
}