Site best viewed at the moment in Firefox ( any thing but IE. From the "browser wars" to present day.. Microsoft continues to defy standards - even with CSS conventions - that keeps all busy programming twice. One for IE and then once for the rest. ) Not that the site doesn't show well with IE... IE ignores CSS calls that are meant to enrich without graphics ones viewing experience. For IE to work you have to first add mime type to your servers list then create a .htc file and include it where ever you call what IE doesn't understand... and then your still not assured all will be uniform, but at least you did your part. (g) I may install the .htc file today, I may not..
what did we add that was so complex... NOTHING COMPLEX... rounded corners, inset shadows and text shadows.
ie: ( no pun intended )
text-shadow:4px 4px 6px #555555;
and
-moz-border-radius: 15px 10px 15px 10px; /* topleft topright bottomright bottomleft */
-moz-box-shadow: 0px 0px 0px ##BBBBBB; /* - Apx = x-axis - Bpx = y-axis - Cpx = cast length / feathering - #XXX = colour as usual */
-webkit-border-top-left-radius:15px; /* top left corner */
-webkit-border-top-right-radius:50px; /* top right corner */
-webkit-border-bottom-left-radius:15px; /* bottom left corner */
-webkit-border-bottom-right-radius:50px; /* bottom right corner */
-webkit-box-shadow: 0px 0px 0px #BBBBBB; /* - Apx = x-axis - Bpx = y-axis - Cpx = cast length / feathering - #XXX = colour as usual */
-moz-box-shadow: inset 0 0 5px 5px #BBBBBB;
-webkit-box-shadow: inset 0 0 5px 5px #BBBBBB;
box-shadow: inset 0 0 5px 5px #BBBBBB;
We still haven't added the BoonEx link - complete failure. ( slap me )
ie did recognize:
opacity: .9;
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
filter: alpha(opacity=85);
so I took it out. (g)
http://we-patriots.com Firefox or Aurora, etc.. will see the item above at work... and IE will see how it doesn't work.. that is unless I install the ".htc" file today.