• Visual SlideShow

  • FAQ

Is it possiblechange the font size & color in make flash slideshow

Q: Is it possiblechange the font size & color in to a slideshow (title of
images). How?

A: You should find the following code in engine/css/slideshow.css
file:

.slideshow-captions {
        background: #000;
        bottom: 0px;
        color: #FFF;
        font: normal 12px/22px Arial, sans-serif;
        left: 0px;
        overflow: hidden;
        position: absolute;
        padding: 0 10px;
        width: $CaptionWidth$px;        /* 100% */
        z-index: 10000;
}



and set values you need for 'font' and 'color' parameters.

Related