06-22-2008, 06:47 AM
Hi Smilie,
(Writing this twice because of the "New" Does your post fit into this category? which dumped my first post)
Browsing around and ended up here, of all places.
Your default theme is concertinaing some awful in IE7 and you may like to try this fix by adding it to the header. Be warned - It doesn't like url(blah blah/whatever.PNG) in the .css, and all images there must be .gif, even if it's only a re-name.
Have a play, and if it's not for you - then I have something else you may want to try.
(Writing this twice because of the "New" Does your post fit into this category? which dumped my first post)

Browsing around and ended up here, of all places.

Your default theme is concertinaing some awful in IE7 and you may like to try this fix by adding it to the header. Be warned - It doesn't like url(blah blah/whatever.PNG) in the .css, and all images there must be .gif, even if it's only a re-name.
Have a play, and if it's not for you - then I have something else you may want to try.

Code:
<script type="text/javascript">
Nom = navigator.appName
Version = navigator.appVer
if (Nom == 'Microsoft Internet Explorer') {
if (navigator.platform == "Win32" && navigator.appName == "Microsoft Internet Explorer" && window.attachEvent) {
window.attachEvent("onload", alphaBackgrounds);
document.writeln('<style type="text/css">img { visibility:visible; } </style>');
}
// Sleight Background
function alphaBackgrounds(){
var rslt = navigator.appVersion.match(/MSIE (\d+\.\d+)/, '');
var itsAllGood = (rslt != null && Number(rslt[1]) >= 5.5);
for (i=0; i<document.all.length; i++){
var bg = document.all[i].currentStyle.backgroundImage;
if (itsAllGood && bg){
if (bg.match(/\.png/i) != null){
var mypng = bg.substring(5,bg.length-2);
document.all[i].style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+mypng+"', sizingMethod='scale')";
document.all[i].style.backgroundImage = "url('/assets/images/x.gif')";
}
}
}
}
}
</script>
The "Path" in the script is only for the script - It does not require x.gif. 