Use a URL address to an image instead of having it located in a folder on the server

Question:

I’m interested in your commercial version of Amazing Slider, but would like to know first if I can use a URL address to an image instead of having it located in a folder on the server.

Answer:

You can add an image from your local computer, after you create the slideshow, you can open the generated file “slider.html” with a text/HTML editor, and edit the image link to your own URL address.

For example, in the following HTML code, you can change the image address to your own URL address:

<!– Insert to your webpage where you want to display the slider –>
<div id=”amazingslider-1″ style=”display:block;position:relative;margin:0px auto 0px;”>
<ul class=”amazingslider-slides” style=”display:none;”>
<li><img src=”images/night-in-the-city-600-300.jpg” alt=”City Night” /></li>
<li><img src=”images/sakura-trees-600-300.jpg” alt=”Sakura Trees” /></li>
<li><img src=”images/sea-side-600-300.jpg” alt=”Sea Side” /></li>
</ul>
<ul class=”amazingslider-thumbnails” style=”display:none;”>
<li><img src=”images/night-in-the-city-600-300-tn.jpg” /></li>
<li><img src=”images/sakura-trees-600-300-tn.jpg” /></li>
<li><img src=”images/sea-side-600-300-tn.jpg” /></li>
</ul>
</div>
<!– End of body section HTML codes –>