afc_champs_2007_colts
New Member
http://landpros.turnpostinteractive.com/LandPros_Results_2.htmlI have a slider on the bottom of the page that is working in every browser but IE8. I can't seem to figure out why its not working in this browser. Here is my HTML.. \[code\]<div class="row bottom-scroller"> <h1>results <a href="http://stackoverflow.com/questions/14543381/#">view</a> </h1><div class="demo-mastercon"><div class="advancedscroller-con"> <div id="as2" class="advancedscroller" style="width:100%;"> <ul class="items"> <li class="item-tobe"> <img src="http://stackoverflow.com/questions/14543381/images/details-page/property.jpg" alt="property" /> <p> Shawnee County Sanctuary<br/> Shawnee County, KS<br/> 10.91 +/- Acres<br/> <span><strong>$369,000</strong> <a href="http://stackoverflow.com/questions/14543381/#">view</a></span> </p> </li> <li class="item-tobe"> <img src="http://stackoverflow.com/questions/14543381/images/details-page/property.jpg" alt="property" /> <p> Shawnee County Sanctuary<br/> Shawnee County, KS<br/> 10.91 +/- Acres<br/> <span><strong>$369,000</strong> <a href="http://stackoverflow.com/questions/14543381/#">view</a></span> </p> </li> <li class="item-tobe"> <img src="http://stackoverflow.com/questions/14543381/images/details-page/property.jpg" alt="property" /> <p> Shawnee County Sanctuary<br/> Shawnee County, KS<br/> 10.91 +/- Acres<br/> <span><strong>$369,000</strong> <a href="http://stackoverflow.com/questions/14543381/#">view</a></span> </p> </li> <li class="item-tobe"> <img src="http://stackoverflow.com/questions/14543381/images/details-page/property.jpg" alt="property" /> <p> Shawnee County Sanctuary<br/> Shawnee County, KS<br/> 10.91 +/- Acres<br/> <span><strong>$369,000</strong> <a href="http://stackoverflow.com/questions/14543381/#">view</a></span> </p> </li> <li class="item-tobe"> <img src="http://stackoverflow.com/questions/14543381/images/details-page/property.jpg" alt="property" /> <p> Shawnee County Sanctuary<br/> Shawnee County, KS<br/> 10.91 +/- Acres<br/> <span><strong>$369,000</strong> <a href="http://stackoverflow.com/questions/14543381/#">view</a></span> </p> </li> <li class="item-tobe"> <img src="http://stackoverflow.com/questions/14543381/images/details-page/property.jpg" alt="property" /> <p> Shawnee County Sanctuary<br/> Shawnee County, KS<br/> 10.91 +/- Acres<br/> <span><strong>$369,000</strong> <a href="http://stackoverflow.com/questions/14543381/#">view</a></span> </p> </li> <li class="item-tobe"> <img src="http://stackoverflow.com/questions/14543381/images/details-page/property.jpg" alt="property" /> <p> Shawnee County Sanctuary<br/> Shawnee County, KS<br/> 10.91 +/- Acres<br/> <span><strong>$369,000</strong> <a href="http://stackoverflow.com/questions/14543381/#">view</a></span> </p> </li> <li class="item-tobe"> <img src="http://stackoverflow.com/questions/14543381/images/details-page/property.jpg" alt="property" /> <p> Shawnee County Sanctuary<br/> Shawnee County, KS<br/> 10.91 +/- Acres<br/> <span><strong>$369,000</strong> <a href="http://stackoverflow.com/questions/14543381/#">view</a></span> </p> </li> <li class="item-tobe"> <img src="http://stackoverflow.com/questions/14543381/images/details-page/property.jpg" alt="property" /> <p> Shawnee County Sanctuary<br/> Shawnee County, KS<br/> 10.91 +/- Acres<br/> <span><strong>$369,000</strong> <a href="http://stackoverflow.com/questions/14543381/#">view</a></span> </p> </li> <li class="item-tobe"> <img src="http://stackoverflow.com/questions/14543381/images/details-page/property.jpg" alt="property" /> <p> Shawnee County Sanctuary<br/> Shawnee County, KS<br/> 10.91 +/- Acres<br/> <span><strong>$369,000</strong> <a href="http://stackoverflow.com/questions/14543381/#">view</a></span> </p> </li> </ul> </div> </div> </div> </div><!--/row-->\[/code\]Here is my custom CSS... \[code\]/*************************************** ADVANCED SLIDER ****************************************/ .advancedscroller{height: 100px; } .advancedscroller-con .thumbsCon{height: 100px;} .advancedscroller-con ul.thumbsClip{height: 100px;} .advancedscroller-con li img{ float: left; padding-right: 12px; } .advancedscroller .bulletsCon{display: none; }\[/code\]as well as this file... http://landpros.turnpostinteractive.com/advancedscroller/plugin.cssFinally, here is my jquery... \[code\] <!--************************** ADVANCED SCROLLER************************** --> <script src="http://stackoverflow.com/questions/14543381/advancedscroller/plugin.dev.js" type="text/javascript"></script> <script>jQuery(document).ready(function($){ $("#as1").advancedscroller({ settings_swipe: "on" ,design_arrowsize: "40" }); $("#as2").advancedscroller({ settings_swipe: "on" ,design_arrowsize: "40" }); $("#as3").advancedscroller({ settings_swipe: "on" ,design_arrowsize: "40" }); $("#as4").advancedscroller({ settings_mode: "onlyoneitem" ,design_arrowsize: "0" ,settings_swipe: "on" ,settings_swipeOnDesktopsToo: "on" }); }); </script> <!--/advancedscroller-->\[/code\]and the plugins file... http://landpros.turnpostinteractive.com/advancedscroller/plugin.dev.jsAny help would be very much appreciated!