Hi, I don't see how to start a new topic on this forum, so am adding my Avia Slider question here.
I have this in the HTML:
<ul class="aviaslider" id='slider1'>
<li>
<img src="/images/PepperTree_ViewfromPorch_w650.jpg"
alt="View from front Porch" />
</li>
<li>
<img src="/images/PepperTree_DinningRoom.jpg"
alt="The dining room" />
</li>
<!-- etc., more li; I'm not using lightBox so took out the links -->
</ul>
And this in javascript:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<script type='text/javascript' src='js/jquery.aviaSlider.min.js'></script>
<script type="text/javascript">
$(document).ready(function()
{
$('#slider1').aviaSlider({
blockSize: {height: 'full', width:'full'},
autorotation: true,
autorotationSpeed:2,
transition: 'fade',
slideControlls: 'none',
showText: true
});
});
I have the js file in the right folder, and copy and pasted the aviaslider css into my main.css. The images all load, but slideshow doesn't happen. All the li images are just stacked on top of one another.
Any thoughts?