I'm redesigning our site and one page I'm trying to build in a rotating carousel of information on the top of the page. It's having no issues on Firefox, but the CSS is all messed up in IE (no background in IE8, no background and page is all messed up in IE8 with IE& compatability turned on). Page is http://redesign.riversidecg.com/services.asp
Here's the cycle call:
<script type="text/javascript">
$(document).ready(function() {
$('.slideshow').cycle({
fx: 'fade',
speed: 2500,
pause: 1,
pager: '#nav'
});
});
</script>
And the code in the page:
<div id="content">
<div class="slideshow">
<div><!--#include virtual="/inc/content-div/1.inc.asp"--></div>
<div><!--#include virtual="/inc/content-div/2.inc.asp"--></div>
<div><!--#include virtual="/inc/content-div/3.inc.asp"--></div>
<div><!--#include virtual="/inc/content-div/4.inc.asp"--></div>
</div>
<div id="nav" class="nav"></div>
</div>
Thanks! Joe