FAQ

FAQ

What are the minimum requirements?

Evo Slider requires jQuery library to run. You can download the latest version of the jQuery library here.

What are the compatible browsers

Evo Slider is compatible with most modern browsers including Internet Explorer v7+, Firefox v3.6+, Google Chrome v4+, Safari v4+, Opera v10.5+.

How to buy the Pro version?

You can buy the Evo Slider Pro version through the CodeCanyon marketplace.

Currently CodeCanyon accept payments through PayPal. PayPal can take payments from most major debit/credit cards so don't worry if you don't have a PayPal account.

Can I use Evo Slider in commercial sites and premium themes?

You can use the Lite version in as many commercial sites and premium themes as you wish. But, you can not use the Pro version in premium themes based on the Regular License of the CodeCanyon.

If you still want to use the Pro version in a premium theme, you have to purchase the Extended License version.

What type of coding skills do I need to use Evo Slider?

The Evo Slider plugin is meant to be very simple to implement. The amount of coding skills required to create an Evo Slider on your website may vary from little to advanced depending on how creative and clever you want to be with your use of Evo Slider.

If you just want an Evo Slider on your website, it's only requiring minimal HTML and JavaScript knowledge. We offer a few example files for the JavaScript version of Evo Slider that you can copy and paste into your website and start modifying. We have also fully documented all the configuration options available for customizing how users interact with your Evo Slider. Check out the documentation how to get started.

If you want to create your own skin, you have to know about CSS. Using public API requiring you to understand JavaScript.

How do I customize my Evo Slider?

We offer a number of customization options with Evo Slider so you don't have to write a bunch of custom code for common configuration changes. Just pass a JavaScript object to the '.evoslider();' command to customize how your visitors will interact with your Evo Slider.

For example, if you want to make your Evo Slider play automatically, just set the autoplay option to true:

$(".evoslider").evoSlider({autoplay: true});
				

How do I updated to the latest version of the plugin?

The latest version of the Lite version will always available in this site. You can download the latest version of the Pro version from your CodeCanyon account page.

Stay connected with us to get the new update.

Is it okay to use the Regular License for websites that I create for clients?

You can use the Regular License for the single website for your client. If you want to use Evo Slider in other website, you have to purchase the Regular License again.

I've placed a video in my Evo Slider, but it shows through the slides, what can I do?

Flash doesn't play nicely all the time with fancy interactions like Evo Slider and the like, luckily there's an easy fix. Just add the the 'wmode="transparent"' parameter to your embed code. For example, with a YouTube video embed code:

<object style="z-index: 1;" width="560" height="300" style="z-index:0;">
    <param name="wmode" value="transparent"></param>
    <param name="movie" value="http://www.youtube.com/v/uU6U-8LP1DY></param>
    <param name="allowFullScreen" value="true"></param>
    <param name="allowscriptaccess" value="always"></param>
    <embed src="http://www.youtube.com/v/uU6U-8LP1DY?version=3&hl=en_US&rel=0" 
        type="application/x-shockwave-flash" width="560" height="300" 
        allowscriptaccess="always" allowfullscreen="true" wmode="transparent">
    </embed>
</object>
                    

How do I create my own skin for the Evo Slider?

Check out the tutorial in the documentation.

Can I control my Evo Slider with other elements? For example, I want to make a next and previous button.

You can control any Evo Slider with the API. Just reference the Evo Slider's element and use one of the navigation commands. For example:

var mySlider = $(".evoslider").evoSlider();

// using outside control
$("#next").click(function(){
    mySlider.next();
});
					

On how many websites can I use the Regular License of the PRO version?

When you purchase the Regular License version of the Evo Slider Pro you are granted use on a single website with the JavaScript library.

On how many premium themes can I use the Extended License of the Pro version?

When you purchase the Extended License version of the Evo Slider Pro you are granted use on a single premium theme with the JavaScript library.