javascript - IE Distorts Slideshow "BACK" and "FORWARD" Navigation -
live example: http://newsite.702wedding.com/vegas-wedding-chapels.asp
works great in firefox, chrome, ie slide show arrow buttons move left.
any permanent fixes? or how can address ie users , give left margin? (seems ugly, real fixs?)
thanks much, james
you can target internet explorer conditional stylesheets fix inconsistencies cause ie. it's not ugly - it's pretty common fix , if done requires small number of styles targeted @ ie. include ie specific css files so:
<!--[if ie 7]> <link type="text/css" rel="stylesheet" href="ie7.css" /> <![endif]--> <!--[if lte ie 6]> <link type="text/css" rel="stylesheet" href="ie6.css" /> <![endif]-->
the top selector targets ie7, while bottom targets browsers <= ie6. use <!--[if lte ie 7]>
target browsers <= ie7 single stylesheet instead.
Comments
Post a Comment