I figured it out need to change two files:
Change slider.css:
——————
Change second line:
From
.lof-container {}.lof-slidecontent{ position: relative;}
to
.lof-container {}.lof-slidecontent{ position: relative; margin-left: auto; margin-right: auto;}
2. add to end of css file:
img.lof-center {
display: block;
margin-left: auto;
margin-right: auto;}
Change easingslider.php
———————–
Find the code to add the shadow Add [class="lof-center"
] and delete [margin-left:'.$slider->bwidth.'px
]
From:
echo '<img src="'.WP_PLUGIN_URL.'/easing-slider/images/shadow_'.$shadowstyle.'.png" style="width:'.$width.'px; padding-left:'.$padleft.'px;padding-bottom:'.$padding.'px;padding-top:'.$padtop.'px;margin-left:auto;margin-right:auto;" alt="" />'; ?><!-- End of Easing Slider --><?php
To:
echo '<img src="'.WP_PLUGIN_URL.'/easing-slider/images/shadow_'.$shadowstyle.'.png" style="width:'.$width.'px; padding-left:'.$padleft.'px;padding-bottom:'.$padding.'px;padding-top:'.$padtop.'px;" alt="" class="lof-center" />'; ?><!-- End of Easing Slider --><?php