Hi Rev,
The CSS that is adding the drop shadow is:
.entry-content img {
max-width: 100%;
height: auto;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.175);
-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.175);
box-shadow: 0 1px 2px rgba(0,0,0,0.175);
}
Line 1363:
https://www.kamio.nl/wp-content/themes/vantage/style.css?ver=2.2.3
The following code (provided earlier) should override this for Meta Slider:
.metaslider .slides img {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
I can’t see that it’s been added – did you remove it?
If added the Meta Slider CSS doesn’t work then you could remove the three style attributes from the theme CSS, but please note that this will remove this shadow styling from all applicable images across the site (whereas the Meta Slider override will remove the shadow from just the slider images):
-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.175);
-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.175);
box-shadow: 0 1px 2px rgba(0,0,0,0.175);
Thanks,
Dave