IE problem
on web site there couple of pages not diplay in ie although ok in firefox, opera, chrome etc. there large blank space after header. 1 of pages http://www.canadianrallyo.ca/events_trials_listing.shtml. sure other page suffering sam,e problem.
any detailed (please) assistance appreciated.
you have html in caro.css file - prevent styles being expressed -
@charset "utf-8";
/* css document */
<style type="text/css">
body {
font: 80% verdana, a
(note presence of <style> tag. that's no-no)
you have ie conditional comments in file -
.twocolfixlthdr #sidebar1 { width: 230px; }
</style>
<![endif][if ie]>
<style type="text/css">
/* place css fixes versions of ie in conditional comment */
.twocolfixlthdr #sidebar1 { padding-top: 30px; }
.twocolfixlthdr #maincontent {
background-color: #fff;
}
/* above proprietary zoom property gives ie haslayout needs avoid several bugs */
</style>
<![endif]
and no-no. please clean before go further layout issues.
you have number of html validation errors on page should cleaned first -
http://validator.w3.org/check?verbose=1&uri=http%3a%2f%2fwww.canadianrallyo.ca%2fevents_trials_listing.shtml
More discussions in Dreamweaver support forum
adobe
Comments
Post a Comment