PDA

View Full Version : My site eats it on IE, help please.


AveryTingWong
Apr-17-2009, 12:18 AM
Heya,

I've been working on my site and I've almost got it to the point where it's serviceable. Looks fine on Firefox but when I opened it up in internet explorer, the slideshow doesn't work. Can someone help me find the problem?

www.averywongphotography.com

Thanks!

----
Bio:
<html>
<hr>
********>
var ssConfig = {
AlbumID: '7926065',
newWindow: 'false',
transparent: 'true',
splashDelay: '2000',
showLogo: 'false',
clickToImage: 'true',
showThumbs: 'true',
showButtons: 'false',
crossFadeSpeed: '350',
randomStart: 'true',
randomize: 'true',
borderThickness: '20',
borderColor: '000000',
borderCornerStyle: 'rounded',
splash: 'http://averytingwong.smugmug.com/photos/514164516_sJRE8-S.png',
forceSize: 'LargeURL',


};

SM.flash.insertSlideshow(475, 650, ssConfig, 'transparent');

</********
<hr>
</html>

CSS:
/* Removal of breadcrumb from home and galleries only */
.homepage #breadcrumb
{display:none;}


/* Small Title Banner */
.smuglogo {

width: 220px !important;

height: 40px !important;

filter: progid:DXImageTransform.Microsoft.AlphaImageLoader (enabled=true,

sizingMethod=image src='http://averytingwong.smugmug.com/photos/514156621_yViPp-XL.png') !important;

}

.smuglogo[class] {

background-image: url(http://averytingwong.smugmug.com/photos/514156621_yViPp-XL.png) !important;

}


/* Footer shrink */
#feeds {
display:none;
}

/* this part hides the your photos/home, login and help links */

#toolbar a.nav {display: none;}



/*=====Body-Background-Image=====*/
body
{background-image:
url('http://averytingwong.smugmug.com/photos/514135988_P3uAb-M.gif');
background-repeat: repeat;}


/* Removing background box in galleries */

.box,
.boxTop,
.boxBottom,
#galleriesBox.box,
#categoriesBox.box,
#subcategoriesBox.box
#smugmug {border: none !important;}
{background: none !important;}

#bioBox {
border: none;
background: none;
}


/* Change default image border color */

.imgBorder {
border-color: #FFFFFF;
}

#bioBox .photo {display: none;}
#userBio {text-align: center!important;}

#navcontainer ul {
margin: 0;
padding: 0;
list-style-type: none;
text-align: center;
}

#navcontainer ul li {
display: inline;
}

#navcontainer ul li a {
text-decoration: none;
padding: .4em 2em;
color: #FFFFFF;
background-color: #222222;
font-family: arial;
size: 16px;
font-weight: bold;
}

#navcontainer ul li a:hover {
color: #000000;
background-color: #FFCC00;
size: 18px;
}

.homepage #galleriesBox,
.homepage #categoriesBox,
.homepage #featuredBox {
display: none;
}

.galleries #bioBox {
display: none;
}

.galleries #galleriesBox,
.galleries #categoriesBox,
.galleries #featuredBox {
display: block;
}

.loggedIn .homepage #galleriesBox,
.loggedIn .homepage #categoriesBox {
display: block;
}

AveryTingWong
Apr-17-2009, 12:38 AM
Hrmm looks like the flash slideshow on my homepage decided to stop working just now too...

denisegoldberg
Apr-17-2009, 02:39 AM
...Looks fine on Firefox but when I opened it up in internet explorer, the slideshow doesn't work. Can someone help me find the problem?
The last parameter in the flash slideshow code must not end in a comma. Firefox ignores that error; IE does not.

Change

....
splash: 'http://averytingwong.smugmug.com/photos/514164516_sJRE8-S.png',
forceSize: 'LargeURL',
};

SM.flash.insertSlideshow(475, 650, ssConfig, 'transparent');
To

...
splash: 'http://averytingwong.smugmug.com/photos/514164516_sJRE8-S.png',
forceSize: 'LargeURL'
};

SM.flash.insertSlideshow(475, 650, ssConfig, 'transparent');
--- Denise

AveryTingWong
Apr-17-2009, 10:02 AM
Awesome! That fixed it. Thank you very much!