Hello BradHarrington,
Lately, I’ve also tried to achieve something similar as you are trying to right now. The only possible solution I found was to add an div element to the meteor-slideshow.php.
First start off copying the meteor-slideshow.php to your child theme.
Then open it up and search for the line after the closing tag:
?>”>
of:
<div id=”meteor-slideshow<?php echo $slideshow; ?>” class=”meteor-slides <?php
Add a div container after the closing tag and assign it an id.
<div id=”slideshow-shadow”></div>
Open your css and add your box-shadow style to the container:
div#slideshow-shadow {
box-shadow: 0 0 5px 5px #BABABA inset !important;
}
This should work. I don’t know if it is the correct way to do it, but it helped me get what I wanted. Would be good if Josh Leuze or someone else could check it. I’m not too much into webdesign, so it might be a bad style to solve it like that.
Hope I could help you.