3858 Captions in html5 image slideshow
  • Visual SlideShow

  • FAQ

Is it possible to change position and color of captions in html5 image slideshow?

Q: First, I really love your product. It is so easy to use.
I need assistance with VisualSlideShow descriptions please. The positions of the image captions (descriptions). How can this be manipulated i.e. size, position, font?

A: Open generated "slideshow.css" file in any text editor (for example, Notepad), find class "slideshow-captions" and change properties you need.
For example:

.slideshow-captions {
    background: none repeat scroll 0 0 #000000; // background color
    bottom: 50px; // position of description
    color: #FFFFFF; // font color
    font: 14px Tahoma,Arial,Helvetica;  // font family, font size
    left: 5px; // position of description
    margin: 0 0 13px 13px;
    overflow: hidden;
    padding: 5px;
    position: absolute;
    z-index: 10000;
}

Related

0