chules+ 4 Report post Posted August 13, 2012 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 0 Report post Posted August 13, 2012 Try replacing none with 0 Share this post Link to post Share on other sites
chules+ 4 Report post Posted August 13, 2012 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+ 4 Report post Posted August 13, 2012 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