Yes, this toolbar (with its ‘like’ and ‘+1’ buttons) should be in the footer when it’s displayed correctly. However, the toolbar does not work well in Internet Explorer and hovers over the slideshow. If you deactivate this toolbar, you’ll see the slideshow is working correctly in Internet Explorer as well.
When customizing a stylesheet as you’ve read in the FAQ section, you’ll find these lines:
.slideshow_container .slideshow_slide_text h2 { text-align: center; font-size: 1.3em;text-shadow: black 0.1em 0.1em 0.1em; }
.slideshow_container .slideshow_slide_text p { text-align: center;text-shadow: black 0.1em 0.1em 0.1em; }
These lines control how the text in text slides is displayed. If you would like to know what font customization options you have, please have a look at this tutorial.
If you’d want to change the text slides’ title to be 20 pixels in size, and the text slides’ description to be a size of 10 pixels, you should change the aforementioned stylesheet lines to this:
.slideshow_container .slideshow_slide_text h2 {
text-align: center;
font-size: 20px; /* This changes the title's size to 20 pixels */
}
.slideshow_container .slideshow_slide_text p {
text-align: center;
font-size: 10px; /* This changes the description's size to 10 pixels */
}