I have been relying on Firefox and Firebug to do much of my work on my beta site, http://69.89.31.130/~catalyu8/ . Went to Internet Explorer and much of my formatting is not "taking"- most obvious examples are the rounded corners on my widgets and header, the shadow on my header. Here is an example of the CSS I have in the HTML/CSS Inserts Ata tab that is working in Firefox but not in IE9:
Quote:
/* Controls the Header (background) image having rounded corners and shadow */ div#imagecontainer { border: transparent; padding: 5px 10px 10px 10px; box-shadow: 0 0 20px #333 !important; -moz-box-shadow: 0 0 20px #333 !important; -moz-border-radius:10px !important; -khtml-border-radius: 10px !important; -webkit-border-radius:10px !important; border-radius: 24px !important; } |