Product:
Question:
How do I enable the lightbox effect on the slider, as can be seen in this example?
https://www.wonderplugin.com/wordpress-slider/examples/wordpress-slider-with-lightbox-popup-id26/
Recently Asked Questions and WordPress Tutorials
Product:
Question:
How do I enable the lightbox effect on the slider, as can be seen in this example?
https://www.wonderplugin.com/wordpress-slider/examples/wordpress-slider-with-lightbox-popup-id26/
Question:
In the slider can one change the background color of the container via the interface instead of altering CSS?
Answer:
You can place the slider inside a div container, and change the background color this "container".
For example:
<div style="background-color:#333;"> [[wonderplugin_slider id="39"]] </div>
The demo is as following:
Question:
I have uploaded one of your sliders on to my WordPress website that I am building for my company and I can't seem to work out how to centre it on the page.
I hope you can help me out.
Answer:
WonderPlugin Slider sets its margin-left and margin-right properties to auto, so it will center itself to its container by default.
If for some reason it does not center on your webpage, you can try to place the slider inside another div, then center the div, for example, you can use code as following:
<div style="width:100%;text-align:center;"> <div style="width:400px;margin:0 auto;"> [[wonderplugin_slider id="37"]] </div> </div>
In the above code, the outer div has a width property 100%, it will have the same width as your webpage.
The inner div should have the same width as your slider. The width value can be pixels, for example "400px", or in percent, for example "80%". Its margin property "0 auto" will place the inner div to the center of the outer div.
Question:
I have the commercial version of WonderPlugin Slider Plugin and am trying to make the shadow underneath the plugin appear larger on my homepage. I like how it sits down lower on your page but it seems to get lost on my page.
Answer:
In Step 3, Options tab, Advanced Options panel, enter the following text to the Advanced Options:
data-bottomshadowimagewidth="115" data-bottomshadowimagetop="95"
The two options define the width and the top position of the underneath shadow (percentage compared to the image).