Hi,
Tried to avoid bothering you by reading some of the posts on how to change slider delay settings and height. I was somewhat successful except that the text in the slider tabs have a blue color.
I made two changes:
In the jquerry.flow.1.2.js file changed 3000 to 6000
var dotimer = function (x){
if((opts.auto) == true) {
if(timer != null)
clearInterval(timer);
timer = setInterval(function() {
$(opts.next).click();
}, 6000);
In the header.php file changed height 161 to 200
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery("#myController").jFlow({
slides: "#slides",
controller: ".jFlowControl",
slideWrapper : "#jFlowSlide",
selectedWrapper: "jFlowSelected",
auto: true,
width: "587px",
height: "200px",
duration: <?php echo $ms; ?>,
prev: ".jFlowPrev",
next: ".jFlowNext"
});
});
</script>
Thanks.
Jim





Add Reply
You must log in to post.