Jump to content
Sign in to follow this  
chules

Feature Slideshow Display on IE8

Recommended Posts

chules

I am working on the following site at http://www.poweredbyc5.com. On the slideshow the objective is just to display full image slides with white backgrounds to blend into the site. To achieve this I tried to remove the boxed lines that are part of the default slideshow. Here is the code I placed into my custom code. It seems to work in most browsers but in IE8 I am getting a strange black overlay effect. Does anyone know how I can remove all the lines and box effects of the feature slideshow so that it will work across browsers, especially IE8. Thank you - chules

#features #feature_slider {
		-moz-box-shadow: none;
		-webkit-box-shadow: none;
		box-shadow: none;
		border: 0;
		background: none;
	}
	
	#features #feature-area {
		-moz-box-shadow: none;
		-webkit-box-shadow: none;
		box-shadow: none;
	}

Share this post


Link to post
Share on other sites
hockpunk426

Try replacing none with 0

Share this post


Link to post
Share on other sites
chules

I tried replacing with 0 and it brings back that box and shadow? The effect they wish to have is just a floating image on a white background. No boxes or lines Thank you - chules

Share this post


Link to post
Share on other sites
chules

I found the following code in an older post. It does remove the borders and is cleaner but I am still having the issues with the slideshow displaying a black overlay in ie. Here is the code I am using to remove the borders

/* Removes the shadow */
	#feature-area { box-shadow: none !Important; }

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×