libra3053
Forum Replies Created
-
Forum: Plugins
In reply to: [Promotion Slider] No Sliders on Home Page after Upgrade to Version 3.3.4Ran into this same issue after just upgrading to 3.3.4. There were many CSS changes in the plugin. Try adding
.promo_slider .panel.current { position:relative; }And if you need it to be responsive, also add:
.promo_slider img { max-width:100%; height:auto; }
.promo_slider { height: auto !important; }Forum: Plugins
In reply to: [Promotion Slider] STOP working on WP 4.2.2Hi, just ran into the same problem when upgrading to 3.3.4. The slider completely disappeared. After much troubleshooting we finally figured out it was due to a change in the plugin’s CSS.
Before upgrading we had in our CSS the following code so that the height would adjust since we had the slider on a responsive website.
.promo_slider { height: auto !important; }After upgrading this was causing the slider to disappear, but removing it caused a huge gap below the slider as the screen size got smaller.
So the solution was to leave that code in place and add the following:
.promo_slider .panel.current { position:relative; }Not sure if this is the same problem you were both experiencing, but I hope this will be helpful to someone.
EDIT: Also, regardless of using the height:auto trick, if you don’t have a height set on .promo_slider either in the shortcode or somewhere in your css then you will probably end up with this same problem. The fix should be the same.