Jquery cycle plugin image resizing issue opera
- by Sam Gregory
I am using the cycle plugin within Joomla and it works fine on IE6,FF,SAFARI,CHROME however when you view it in OPERA breaking happens.
It loads fine but when it brings in the next slide and every consequent slide after that it re-sizes them to what i can only assume to be the browswe window's width and height.
here's my javascript
<script type="text/javascript">
$('.fullScreen').cycle({
speed: 1000,
timeout: 100
});
</script>
css
<script type="text/css">
.fullScreen {
margin-left: 0px;
height: 355px;
clear: both;
width: 475px;
z-index: -1;
overflow: hidden;
}
</script>
and finally HTML
<div class="fullscreen">
<img width="475px" src="images/someimage1.jpg" />
<img width="475px" src="images/someimage2.jpg" />
<img width="475px" src="images/someimage3.jpg" />
</div>
hope I'm not the only one having this problem.