Add a Slider to Blogger

by
APRIL 2013 UPDATE!! Serveral readers have discovered that part of this tutorial does not work for domains other than the standard Blogspot.com domains. There is a fix here, however!! If you have a custom domain you will need to follow this tutorial - but also the section called 'Addendum 1' at the bottom of this post in order for the slider to work correctly.

Life can get pretty darn busy at this time of year. I had to take some time off posting just to get my grad school work done as well as my job. There's a ton of new tutorials I have in my back pocket but just haven't had time yet to do the work. But, my paper is done for school and I'm now relaxing in a snow storming weekend.

What I didn't expect was that I would be spending hours trying to find a good image slider for Blogger that didn't run into weird problems or wasn't too complex to implement. Image sliders are very cool but are implemented in so many different ways - typically in Flash or Javascript. In this case I had to work through about four different free sliders to find one I liked or that worked right. Blogger does have a Slideshow gadget, but it doesn't have any real customizable features.

Let's get started. The Image Slider template I chose is from a company called Menucool.com and offers a free slider framework. You can view a sample of it in action by clicking on the image in the upper left of this post. The part that sold me on it was the fact that it didn't require JQuery script code in order for it to be implemented. That's good for us because it reduces the load time for your blog and is easier to install (note that easier is relative here - it is still a bit of a trick to get it setup correctly).

Uploading and Installing the Main Script

The main Javascript code for Menucool requires you to install some javascript code somewhere. Well, as you know Blogger doesn't have a place to install a file. You could extract the script and embed it into your template. But, I like to add it to Google Sites as a file then reference it. Your first step is to go to the Menucool.com Javascript Slider page. From there scroll down a bit to download the image slider code. All we want right now is the main Javascript file - click on the Download button:

Menucool javascript for Blogger image slider

The file is going to be in zip format. So, depending on your system you may need to download an unzip utility.  Once downloaded and unzipped you should see something like this:

Image slider for Blogger downloaded code

Navigate to the folder called jsImgSlider\jsImgSlider\themes\1 - this is where you will find your code file entitled js-image-slider.js:

Blogger image slider javascript file



Now, you'll need to install this file on a visit external site somewhere.

IMPORTANT UPDATE: If you have a custom domain name (not [blogname].blogspot.com) then don't upload the .js file to Google Sites (please see the Addendum 1) and jump down a few paragraphs to Adding the Nav Button!!  This next section only works for .blogspot.com domains.

As I noted I use Google Sites for this. I'm not going to repeat my tutorial on how to install a file in Google Sites. Just take a look at my MP3 posts on installing a file. You'll want to upload the js-image-slider.js file to your Google Site exactly like an MP3 file. Follow the steps in Add an MP3 File to Blogger - Part 1 and Part 2 of how to upload a file to Sites.

Once your file is uploaded you'll want to find the full link to it as I did in the MP3 tutorial by right-clicking the down arrow on the far right and choosing 'Copy Link Location':

Choose the javascript file from Google Sites

Save your link location in a word processor or text editor somewhere. It should look something like this:
https://sites.google.com/a/bloggertipspro.com/myfiles/mp3/js-image-slider.js?attredirects=0&d=1   Be sure to remove the '?attredirects=0&d=a' part.  You can also change the https to just http.

Add Links and CSS to Your Blogger Template

Now you're ready to install the scripts and layouts to your Blogger template. First step is to add this line you just saved to your template's HTML with the script tags added - be sure to change my URL to yours:

<script src='http://sites.google.com/a/bloggertipspro.com/myfiles/mp3/js-image-slider.js'/>

Go to the Blogger main menu and choose to Edit HTML in your Template:

Edit the Blogger template html

At the very top of the Template add your script line above like this just after your title code. Be sure to save your Template:

Code for Blogger slider image

Adding the Nav Button
Now you have the image slider code ready to be used. One part of this code requires a simple image upload to your blog - the navigation buttons. This file is called bullet.png - you can see it in the unzip file list above when we got the javascript file. Copy this file from the unzip list and add it to any post in your blog as an inserted image and save the post. Then, just go into the HTML of your Post and find the image link like this:


Copy that link code from your post and save it in a word processor or text editor. You want this for later. Go ahead and delete the image from your post. Don't worry, Blogger keeps all images even after your delete the post image.

IMPORTANT: follow the very same steps when adding your banner images as well. Add them to a post, save the post, copy their links and then delete the images. In my case I have three 900px by 120px images that I added to a post - which you can see here.  I could delete them - it wouldn't matter - but I left them for you to see.

Next step is to add the right CSS code to format your images. In my example I'm using banner images that are 900px wide by 120px tall. You can modify the CSS for any image size. The CSS code below will be setup for that size. Next step is to go into your template Customize section:

Customize a Blogger template
Once in go into the Advanced section of the customizer:

Add CSS to Blogger Template


Here is the CSS code you want to add - just ignore the code in the image above. You'll want to copy and paste this into the window on the right (you can see some of the pasted code in the image above - ignore the .post pre section). If you have code already there - just paste below it:


/* http://www.menucool.com */

#sliderFrame {position:relative;width:900px;margin: 0 auto;} /*remove the "margin:0 auto;" if you want to align the whole slider to the left side*/

#ribbon {width:111px;height:111px;position:absolute;top:-4px;left:-4px;background:url(ribbon.png) no-repeat;z-index:7;}
        
#slider {
    width:900px;height:120px;/* Make it the same size as your images */
 background:#fff url(loading.gif) no-repeat 50% 50%;
 position:relative;
 margin:0 auto;/*make the image slider center-aligned */
    box-shadow: 0px 1px 5px #999999;
}
#slider img {
 position:absolute;
 border:none;
 display:none;
}

/* the link style (if an image is wrapped in a link) */
#slider a.imgLink {
 z-index:2;
 display:none;position:absolute;
 top:0px;left:0px;border:0;padding:0;margin:0;
 width:100%;height:100%;
}

/* Caption styles */
div.mc-caption-bg, div.mc-caption-bg2 {
 position:absolute;
 width:100%;
 height:auto;
 padding:0;
 left:0px; /*if the caption needs to be aligned from right, specify by right instead of left. i.e. right:20px;*/
 bottom:0px;/*if the caption needs to be aligned from top, specify by top instead of bottom. i.e. top:150px;*/
 z-index:3;
 overflow:hidden;
 font-size: 0;
}
div.mc-caption-bg {
 background-color:black;
}
div.mc-caption {
 font: bold 14px/20px Arial;
 color:#EEE;
 z-index:4;
 padding:10px 0px;/*Adding a padding-left or padding-right here will make the caption area wider than its background. Sometimes you may need to define its width again here to keep it the same width as its background area (div.mc-caption-bg).*/
 text-align:center;
}
div.mc-caption a {
 color:#FB0;
}
div.mc-caption a:hover {
 color:#DA0;
}


/* ------ built-in navigation bullets wrapper ------*/
div.navBulletsWrapper  {
 top:130px; left:400px; /* Its position is relative to the #slider */
 width:150px;
 background:none;
 padding-left:20px;
 position:relative;
 z-index:5;
 cursor:pointer;
}

/* each bullet */
div.navBulletsWrapper div 
{
    width:11px; height:11px;
    background:transparent url(http://1.bp.blogspot.com/-iZorGHERf4o/UMTumERvTMI/AAAAAAAAAho/I6knAHhFd9Y/s1600/bullet.png) no-repeat 0 0;
    float:left;overflow:hidden;vertical-align:middle;cursor:pointer;
    margin-right:11px;/* distance between each bullet*/
    _position:relative;/*IE6 hack*/
}

div.navBulletsWrapper div.active {background-position:0 -11px;}


/* --------- Others ------- */
#slider 
{
 transform: translate3d(0,0,0);
    -ms-transform:translate3d(0,0,0);
    -moz-transform:translate3d(0,0,0);
    -o-transform:translate3d(0,0,0);
}


Find the part in the code near the end that references the 'div.navBulletsWrapper' and the part that says 'background:transparent url' - paste in the bullet.png image link you saved earlier to replace the one here. Once you've pasted in this CSS code be sure to hit the orange Apply to Blog button!



Ok, you're just about set. The last part is to have your images ready for the slider. So, if you're using this same tutorial - try images of my sample size first. If you want to alter the sizing - find the CSS section entitled '# slider {' in the code above. You should see the slider width and height that you can adjust for your images. Also, adjust the '#sliderFrame {' section to the width as well if you want. You may need to adjust the 'div.navBulletsWrapper {' section too to move any banner test positioning.

Place the Images in the Slider HTML

Your final steps are to go into your Blog layout section - choose the main manu Layout and Add a Gadget:


Choose a standard HTML/Javascript gadget like this:


Next, you'll want add the HTML code that will spin the banner images.  A couple of notes to change in the code below - a) be sure to copy your banner image links in, b) you can add as many images as you want - just add additional img tags, c) alter the banner text and links to what you want, d) alter the last caption to go to any link you'd like, e) add links with a href tags if you want a clickable image:

<div id="sliderFrame">
        <div id="ribbon"></div>
        <div id="slider">
            <a href="http://www.bloggertipspro.com/" target="_blank">
                <img src="http://3.bp.blogspot.com/-hkCd-3xCR7s/UMUEKazgPeI/AAAAAAAAAh4/URc6PaI91Ws/s1600/aimage1.jpg" alt="Sliding Images for Blogger" />
            </a>
            <img src="http://1.bp.blogspot.com/-7Jw0cDIZQZU/UMUENnfNA2I/AAAAAAAAAiA/FkSyFCo-ny8/s1600/aimage2.jpg" alt="Multiple Transition Options" />
            <img src="http://2.bp.blogspot.com/-haPuALOU3SY/UMUEPSUDGxI/AAAAAAAAAiI/0jleDz5LToE/s1600/aimage3.jpg" alt="Full Instructions at BloggerTipsPro.com" />

        </div>
        <div id="htmlcaption" style="display: ;">
            <em>HTML</em> caption. Link to <a href="http://www.google.com/">Google</a>.
        </div>
 </div>


You can see my image links above where I pasted them in. Go ahead and save your gadget code and position it where you want. I've placed my example near the top - but, you can be creative and add the code where you'd like:

Image slider HTML layout


That's it - be sure to save your layout!  Your rotating slider images are ready. If you go back to the Menucool.com site you can find more ways to adjust the slider properties and do some more creative things. Enjoy - here's the link again to my sample blog: http://statichomepage.blogspot.com

Addendum 1- Fixing the Javascript for Custom Domains

Apparently, Google Sites wraps the Javascript code above in HTML if your domain is not  .blogspot.com but a custom one just like BloggerTipsPro.com. Rather than added an external link, all you need to do is to copy the Javascript code directly into an HTML widget. Just add a new HTML widget anywhere on your layout. Then, open the file 'js-image-slider.js' in a text editor and copy the code into the HTML widget surrounded by the script tags like this:

<script type='text/javascript'>
var sliderOptions=
{
 sliderId: "slider",
 effect: "series1",
 effectRandom: false,
 pauseTime: 2600,
 transitionTime: 500,
 slices: 12,...lots of code here......getElement:function(){return K(j.sliderId)}}}
</script>

You can see how I pasted the code here:


Go ahead and save your gadget code and you should be good to go!

Addendum 2- Allowing Your Slider Only on the Home Page

This part is a bit tricky and you'll have to be sure to backup your template in case of errors. There was a question in the comments about how to limit your slider only to the home page. Now, if you have a Static Home Page like my tutorials before then what I'll show you is the way to do it. However, if you want to show the slider only on the Blog Posting main page you'll have to change a couple of things.

The key to doing this is to add code to your template that will only show the HTML widget above when a certain page type and page name loads. This isn't a great idea because now you'll have that page name embedded in your code - REMEMBER THIS - if you ever change the page name you'll have to go back into the template and change the code!!!

You'll need to find the HTML widget in your Template by expanding it and searching for it. Here is how I found my code in the Blogger Static Home Page template and example for this:

Hide the image slider within your Blogger template
As you can see I found the widget and added these two lines:

<b:if cond='data:blog.pageType == &quot;static_page&quot;'>
<b:if cond='data:blog.pageTitle == &quot;Blogger Static Home Page: Home Page&quot;'>

These lines are checking to see if the page is first,a static page, then, trying to compare the page title. In this case, if the page is of type static_page and the title is 'Blogger Static Home Page: Home Page' then show the slider - otherwise, ignore it. Remember to add the two </b:if> statements at the end. Your page types (pageType variable which can have the values 'item', 'archive', 'static_page' or 'index') and Titles will vary - take care to work through this.

83 comments:
  1. Thank you so much for this tutorial, I could finally add it to my blog! However, I wonder whether it's possible to make it only appear on the home page, and not on the actual blog posts. Is that possible, if so, how can I do that?
    Thank you in advance!

    ReplyDelete
    Replies
    1. A Christmas present for you, Fashion En Vie!

      I added an addendum to the post above to show you how to do it. Be careful when you do this - the code must be right and can cause issues if you make a mistake. My Static Home Page blog has the example running. Be sure to backup your template first using my earlier post tutorial.

      Good luck!

      - Don James

      Delete
    2. Wow! I took a quick look at your blog - wonderful design!!! Well done!! I love it!

      Merry Christmas!

      Delete
  2. Fantastic. its really works. thanks for the Great post.

    ReplyDelete
  3. I just installed this slider image banner on my site www.cleverlending.com but it is not working in Safari or Firefox, only in Chrome, any idea why this would be? It just shows up as an empty banner in Safari and Firefox. Your help would be appreciated.
    Thank you.

    ReplyDelete
    Replies
    1. Hi Clever Lending!

      I'm stuck on an another issue right now but will take a look sometimne this weekend to see. Did you check my Static Home Page sample to see if my example is working on Firefox and Safari?? I know it works for me.

      - Don

      Delete
    2. Hi Laura,

      I took a look but can't find the page where you placed the slider. Are you sure the links to your images are the full URL links? Also, make sure the images are scaled to the right size - they can't be too large.

      Great use of the static home page, though. Nicely done!!!

      Let me know how I can help.

      - Don

      Delete
    3. Hi Laura,

      Turns out the custom Blogger Slider problem was mine! Custom domains were the problem and it is now fixed in the tutorial. If you haven't done this yet please take a look!

      Sorry!

      - Don

      Delete
  4. This comment has been removed by the author.

    ReplyDelete
  5. Hello Don! Thank you for your great work about this how-to. As my home-page is not a static page, I used only second line of condition (checking the page name). Unfortunatelly, now slider has disappeared from the whole blog. Could you tell what's wrong? (vikna.od.ua)

    ReplyDelete
    Replies
    1. Hi Igor!

      I'm looking to see where on your page the slider should be - do you have any more information on where I should look on the page? Was the slider on your home page??

      - Don

      Delete
  6. For me, all I get is a white screen.... Started from scratch and no avail

    ReplyDelete
    Replies
    1. Sorry to hear that, DAndre!

      Make sure your image links are correct and that the images themselves are uploaded to your blogger site. Otherwise let me know what webpage to look at and I might be able to help you.

      - Don

      Delete
    2. @Dandre : I too got the same problem and when i rechecked, then I found my mistake that I uploaded the wrong file.
      We are supposed to upload a file with .Js extension and I uploaded the one with .Css extention, that resulted in that white screen!
      I fixed it and now the slider is working perfect !

      Delete
  7. Hi Don,

    First, thanks so much for your resources and for your reply. Basically, I run a flight simulation blog called AirDailyX.com which generates about 200,000 hits a month. I am using this old non jquery slider but I can't change anything about it and it's quite boring...

    I have set up a test blog for things like this and I am happy to give you full access if you want to have a look.

    At this point, I followed all your directions and the result I have now is all of your slider images show as static and non rotating. Here is the address to my test blog: skydailyx.blogspot.com

    I must have missed a step in there somewhere but cant find it. I did not add my own images yet.

    Thanks you so much again Don! If you would link admin access to have a look, visit my blog you will find my email address there at the very bottom of the page.

    Thanks you again!

    D'Andre

    ReplyDelete
    Replies
    1. Hey D'Andre,

      First thing I noticed was that the Javascript link for your slider was wrong in your template:

      src='http://sites.google.com/site/airdailyxnewsbreaker/slider/js-image-slider.css?'

      the extension shouldn't be .css? but .js like mine here:

      src='http://sites.google.com/a/bloggertipspro.com/mediafiles/mp3/js-image-slider.js'

      I think that will fix your problem!

      Let me know if it works.

      - Don

      Delete
  8. Hi Don,

    Okay some progress. I dont have that blue download arrow so I was clicking properties on the provided download and the above mentioned URL kept poping up. So this time I saved target as: and pasted that URL into the browser bar and the correct URL pasted. It seems to be working somewhat. I'll report back when I have everything worked out.

    D'Andre

    ReplyDelete
  9. Okay, finally everything is working perfectly!! Thanks so much again for your help Don! Now on to customizing!

    ReplyDelete
  10. Hi Don,
    I love this slider and its really easy to install.
    The slider was ok when i install it on my site until my visitor start viewing the site but the slider is not showing.
    The strange thing is, I myself can view it on my side, but not others.and i realized it only work if i logged in to my site. blank slides when signed out.
    Help? Here's my site http://www.kraftypalette.com/

    ReplyDelete
    Replies
    1. Hi Ida!!

      It's working for me - were you able to figure this out yourself? I'm assuming you're talking about your home page.

      Let me know!

      - Don

      Delete
    2. Hi Don!
      Yes it is my homepage.

      I tried using a different tutorial from this site
      http://www.helperblogger.com/2012/07/javascript-image-slider-for-blogger.html

      its much simpler and works wonder except i cannot use my own hosted js.(because i need to change the slider style etc)

      tried replacing the js. script from this tutorial (yours and mine) but to no avail. i guess the way is different? any comment?

      Delete
    3. Hi Ida,

      Not sure what happened with the tutorial for you. Sorry it didn't work out.

      - Don

      Delete
    4. Hey Ida,

      We did figure out the problem - if you want to revisit it the tutorial is updated with the fix (has to do with custom domains)

      Delete
  11. Hi Don thanks for such great tutorials, ive only been using blooger 3 days and i have got to understand so much from your site already. i have basic code understanding, but im no expert. Im stuck at this particular point.
    your code is this




    so im guessing i have to tweek it to my own title and page name ?




    ive tried this and i few other things and the slide show disapears ?
    The code is basically saying if your called title name "xyz" and have page name "xyz" then show the slide show right ?

    i have put "homepage" instead of home-page as when i used - , i got page does nt exist earlier in your tutorial missing the - made it work.

    my sites is http://vitessendesign.blogspot.co.uk

    not much on their a part from the slide show and some tabs just thought better to get a frame work sorted first then get more stuff on site later.
    If you could tell me where to go right id be very greatfull

    thankyou Don

    ReplyDelete
    Replies
    1. hi don
      when i give an example of the code not working for me it. does not publish it . i am not sure why ?
      what can i do to explain my problem better to you ?

      thanks for your time

      Delete
    2. Hi Daniel,

      Yes, I see that your example code is missing. I think the best thing for you to do is to create a test blog and walk through the tutorial very slowly, step-by-step.

      From your question I think you're referring to the Addendum section on limited the slider to the home page. Were you able to successfully add the slider first without limited it to a page?

      - Don

      Delete
  12. Thanks for your reply don
    i manage to work it out i had imputed all the code correctly but i also had some other if statements that would take away certain sections of the template for my static page that where interfering with the addendum part of your course. all in all it was a good exercise of debugging my code all works fine know.
    thank you anyways, and great tutorials

    dan

    ReplyDelete
  13. where do i need to make some changes in order to increase width and height of slider frame as well slider images? please do reply.

    ReplyDelete
  14. I could kiss you!! THANK YOU!!!!!!!

    ReplyDelete
  15. Hey James i followed each and every steps properly but still couldn't find my slider in my home page in the end, my images link are also properly given, could you please find whats wrong with my code..?

    ReplyDelete
    Replies
    1. We just discovered that custom domains have issues with the slider - please check this updated post!! Thanks!

      Delete
  16. Hi this might be a dumb question, but can you use the same line in the head for the script on two different blogs with two different sets of photos and differing size slides?

    ReplyDelete
    Replies
    1. Hi Karla!

      Yes, you can - just have the Javascript on your Google Sites page and use that link in both blogs. The slider code will have to be in each blog with separate images.

      - Don

      Delete
  17. Is it possible to have two slide shows or as many as you want on on the same page ? im trying but not much luck at the moment

    thanks in advance

    ReplyDelete
    Replies
    1. Hi daniel,

      Hmmmm......very good question - I'm not really sure. Have you checked the Menucool.com site documentation? They might know.

      - Don

      Delete
  18. Thank you very much! You helped me add a great slider in our blog http://commediama.blogspot.gr/ I will discover more in your excellent site. Thanks again!

    ReplyDelete
  19. I have done well so far but when I try to do the "Addendum 2- Allowing Your Slider Only on the Home Page", I miss all my nav menu bar ?

    Can tou help me on addendum 2 "?

    ReplyDelete
  20. Hey Don I have follow your tutorial steps by steps and have done many checking if I placed any wrong code but I didn`t find what is wrong with my slider when its stuck on the third image of the slide,,

    Can you help me please? I really appreciate it!!

    This is my blog..http:/copyforyou.blogspot.com

    ReplyDelete
    Replies
    1. Hi Harry!

      Looks like it is working correctly (at least in the Chrome browser.) Let me know!

      - Don

      Delete
  21. Yeah Don, I have solve the problem!!,,Thank you very much for your consideration.
    by the way Don, I would like to ask a favour.If you don`t mind, can you teach us about how to apply JS Image Slider Demo 2,,
    The slider with the thumbnail,,

    I starting to like that slide,,hehe

    Your consideration much appreciated!!

    Thanks Don.

    ReplyDelete
  22. Hi Don,

    Your tutorial is wonderful. Although I have tried to use a different slider (parallax) using your methods. The background is displaying perfectly as well as the loader. But I can't see the effects, navigation buttons and the images. As your tutorial suggested, I included the .js file but there were three of them. I wonder if that's causing the problem. Please help me sort it out. Thanks.
    Payoshni

    ReplyDelete
  23. Please help me. I have very little hair left after adding this to my page and it's still not working. The problem is the loading.gif just sits there spinning but my images aren't loading. Is it because I added them to a post and the deleted them? Can I amm the images to google sites like I did the .js file and it work that way? Sorry to bother you but I am stumped. Thanks for any help!

    Wanda

    ReplyDelete
  24. Oops! I forgot to give you my blog address. www.abookloversretreat.blogspot.com Thank you!

    ReplyDelete
    Replies
    1. Hi Flghtlss!

      I took a look at your blog's template and code - it looks right. Plus, I can view your images - they are not deleted. However, I noticed 2 things - one is that your last image is hosted from 4shared.com - a site blocked for me. Try removing it. Also, you are missing the caption under the images - not sure if this makes any difference. Here is my sample just after the /div in the image list:

      div id="htmlcaption" style="display: ;" - it's in the sample code.

      Let me know if you've tried this.

      - Don

      Delete
    2. I fixed those things Don but I can't see the images myself. All I see is the loading Icon spinning and I don't understand why. It's like the images aren't loading on my end. Any idea?

      Thanks for your help!

      Wanda

      Delete
    3. Hi Wanda,

      The problem looks to be in your CSS code that was copied. There are references to the 4shared.com site for images that are download links. You need to add these images to your blog just as you did with the scrolling images and then copy the blogger links. The code in question is:

      /* http://www.menucool.com */
      #sliderFrame {position:relative;width:960px;margin: 0 auto;} /*remove the "margin:0 auto;" if you want to align the whole slider to the left side*/
      #ribbon {width:111px;height:111px;position:absolute;top:-4px;left:-4px;background:url(//www.4shared.com/download/Q4NMMu8s/ribbon.png?tsid=20130624-135444-870734c8) no-repeat;z-index:7;}
      #slider {
      width:960px;height:360px;/* Make it the same size as your images */
      background:#acd8e5 url(//www.4shared.com/download/xpFxJrkI/loading.gif?tsid=20130624-134909-53ab80cb) no-repeat 50% 50%;

      Move the images and chagne the url commands. That should fix the issue.

      - Don

      Delete
  25. Hi Don.

    Thank you for nice tutorial. Really cool stuff.
    It doesn't work for me. I think I'm doing something wrong and I don't know what.
    Any chance you could help me out?
    Thanks for any help.

    Kuba

    ReplyDelete
  26. Don,

    I can't get the pictures to come up. I followed the steps... ARGH!

    ReplyDelete
  27. (this is for my http://datingroads.blogspot.com.au/ blog)

    ReplyDelete
  28. Hi Don!

    Thanks so much for this very clear tutorial!

    I have a question: How can I slow down the transition between the images?

    Cheers

    ReplyDelete
    Replies
    1. Hi Milna!

      It is a bit tricky - but, what you have to do is modify the actual .js file. If you linked to it from your Google Sites - you'll need to open it, modify it, and save it again. However, if you pasted the full javascript into the Blogger gadget then you must change the values there. Take a look at this link for more information:

      http://www.menucool.com/slider/javascript-image-slider-demo1

      Hope this helps!

      - Don

      Delete
  29. Hi Don,

    Thanks for the tutorial. I followed all of the steps, including Addendum #1, but I'm not seeing my images. I can't figure out what I've done wrong.

    Could you help?
    www.asanatayoga.com

    ReplyDelete
    Replies
    1. Hi Alessandra!

      Looks like you got it working!! Let me know if you have more issues. Sorry about the delayed response.

      - Don

      Delete
  30. Hi Don,
    I will try to make a correct english post ;
    I use slider for this site I manage but images doens't.
    What i can forget ? Thanks for your reply ; Yours posts and tuts are very usefull !
    Check here : www.coach-sportif-geneve.com

    Thanks from France

    ReplyDelete
  31. Hi don,
    i used this tut : http://www.helperblogger.com/2012/07/javascript-image-slider-for-blogger.html

    But the javascript source are not in of my widget blog.

    I don' t find another issue

    www.coach-sportif-geneve.com

    ReplyDelete
  32. You are a lifesaver! I’ve been looking everywhere for this, and am I excited! It works
    perfectly! Thank you so much for this awesome tutorial!

    ReplyDelete
  33. I am just meeting Don James today. I happened upon Blogger Tips Pro while looking for a fix for my Blogger project. I found this post related to sliders, but it wasn't quite what I needed. I went out on a limb and wrote to Don directly, and much to my delight, he responded promptly, and in detail. I followed his guidance and have been able to solve my slider problem. I am THRILLED and very, very grateful for Don's help. I expect that many other posts will be a great help to me along the blogging journey. Don, thanks for your kindness and generosity. Warm Regards...to a true Blogger Pro!

    ReplyDelete
    Replies
    1. Hi Andrea!

      Glad I was able to help you out! Appreciate the comments!

      - Don

      Delete
  34. Hi
    This tutorial really helps me a lot. Thank you so much.

    ReplyDelete
  35. Hello again Don,

    Quick question, is there a method of having the slides appear at random each time the blog is visited or refreshed? New advertisers are concerned their slide ads will be too far back in the order to be seen. Putting them at random gives all of them an even chance. Thanks again for the enormity of your expertise! The blog had 411,000 hits for August. Your banner assistance was a huge help!

    ReplyDelete
    Replies
    1. Hi DAndre,

      I thought this would be a bit easier - but, you have to modify the javascript file in order to randomize your images. Check out the Menucool.com site for more information:

      http://www.menucool.com/1235/How-to-start-random-slide-

      Be sure to test it on a new blog first. Hope that helps!

      - Don

      Delete
  36. Hi, i use your slider script into my blog, but i find a problem in navigation bullet, i find number in my nav bullet, how to hidden it? Thanks sory for my bad english

    ReplyDelete
  37. I forgot to give my blog address, this is my blog http://wahyunusual.blogspot.com/

    ReplyDelete
  38. Hi Don, thanks again for your prompt response. I decided it is time to migrate from blogger. I'm now working with squarespace. Wish me luck! If you have any pointers on how to implement the slider that would be great. Thanks again for all your help! airdailyx.squarespace.com

    ReplyDelete
  39. Hey Don,
    My slider bar is stuck on the third picture and it won't show my fourth picture. I literally copied the code and only changed the size of the images. I don't know what went wrong.

    ReplyDelete
    Replies
    1. Richard,

      I took a look at your blog and cannot figure out why it is stopping on the third image. Your code does look correct at first glance. Could you try it again on a dummy test blog to see if you can get it working right?

      Sorry I don't have more info to give you. It could be a missing tag or the Menucool version.

      - Don

      Delete
  40. Thanks a Million Don!
    I was searching for ages for this and finally ... !!!

    Keep up the good work ! I will be visiting this site everyday now!
    I browsed whole your website and i have to say that every post is a gem!

    Loved it <3

    ReplyDelete
    Replies
    1. Hey Syed!

      Thanks for the comments! Hope to have even more useful info coming up in 2014.

      Don

      Delete
  41. Hi There,

    Thanks for this great tutorial.. im implementing it now on my website http://www.computerrepareren.net/p/home.html but i get just a white screen.. i doublechecked the js in place and the images, but cant seem to fix it.. can you see whats wrong?

    ReplyDelete
    Replies
    1. Hi Harm,

      Sorry about the delay - looks like you got it fixed. Let me know!

      Don

      Delete
  42. really a great work,,thank you

    ReplyDelete
  43. Hi Don,

    Awesome site.

    I seem to have the "white banner of death" problem. I have a custom domain, so I followed your steps to put the java code into an html widget. I wrapped the code as you instructed.

    I've verified that all image links work. Any idea what might be going on?
    survivethefirstweek.com

    Thanks!
    -Brent

    ReplyDelete
    Replies
    1. Hi Brent,

      I took a look and see the same issue for you. Are your images uploaded to Blogger or to some external site? Otherwise, a good test is to create a test blog and attempt the same steps again. Even with a test blog you can copy the javascript into a gadget.

      - Don

      Delete
  44. Hi Don,

    Images are indeed loaded to blogger. I will try the test blog when I get a free minute. Thanks for the help.
    -Brent

    ReplyDelete
  45. This comment has been removed by the author.

    ReplyDelete
  46. Hi,
    Thanks for the great ideas and explanations. I'm still in a total experimentation phase and installed the image slider ok following your directions quite a while ago (http://goannaray.blogspot.com.au).

    However when I've gone back to it to try and make some more adjustments (ie, image sizes) months later, I can't find the CSS that was added in the 'Customise'... 'Add CSS' area anywhere! The Slider still seems to be working fine, so I'm really unsure as to what's going on. Any suggestions on how I can now adjust some of it's settings would be greatly appreciated. Thanks.
    Renee

    ReplyDelete
  47. Hi again,
    Sorry, after some further research, I finally found where the CSS had been inserted into the HTML template. Still unsure why it gets deleted from the 'Add CSS' area, but oh well.
    Thanks again for your ideas and easy to follow directions.
    Renee

    ReplyDelete
  48. how you do it now couse i dont see the css option?

    ReplyDelete
    Replies
    1. It's moved in the new editor to Theme/Customize. On the left menu go to 'Advanced' and select 'Page Text' which will be a dropdown menu to get to 'Add CSS'

      Delete

NOTE: If you are logged into a Google account and you cannot see your Google profile image and name next to the 'Comment as:' in the comment editor, your 3rd party cookies are blocked and the comment won't post. If blocked, please comment preferably by Name/URL.