<em>@smitheringale 196547 wrote:</em><blockquote>Hi.
Yesterday one could navigate between slides using buttons that protruded to the left and right of the slideshow.
Today, those buttons are contained within the slideshow – neatly hidden away.
Is there any way to use the first way of navigating between the slides of the slideshow. It was more prominent and to me seemed more logical.
Cheers :)</blockquote>
that’s a new change of the template, if you would like to have those buttons displaying on the left, right of the slideshow. please complete this task as following:
you open the file: templates/ja_portfolio/css/mod_jaslideshow2.css
#ja-slideshow .ja-slide-buttons {
position: absolute;
bottom: 30px;
left: 15px;
height: 43px;
width: 70px;
}
replace:
#ja-slideshow .ja-slide-buttons {
bottom:30px;
height:43px;
left:0;
position:absolute;
width:100%;
}
and find
.ja-slide-buttons .ja-slide-prev { background-position: left top; float: left; }
.ja-slide-buttons .ja-slide-next { background-position: right top; float: right;}
replace:
.ja-slide-buttons .ja-slide-prev { background-position: left top; float: left;margin-left:-30px}
.ja-slide-buttons .ja-slide-next { background-position: right top; float: right;margin-right:-30px}