BipadTaranMahato / slideshow

Automatically exported from code.google.com/p/slideshow
0 stars 0 forks source link

Long Captions #91

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
I put a long captions on 1 images its doesn't work. Because only one line
captions. Can you show me how do it with long captions ?

Original issue reported on code.google.com by gemb...@gmail.com on 4 Jun 2009 at 5:57

GoogleCodeExporter commented 9 years ago
You should have directed this to the group mailing list.
How ever to edit the captions appearance, edit your css file.
.slideshow-captions { /* you can edit this to change the look of the captions*/
    background: #999;
    bottom: 0;
    color: #333;
    font: normal 12px/22px Arial, sans-serif;
    left: 0;
    overflow: hidden;
    position: absolute;
    text-indent: 10px;
    width: 100%;
    z-index: 10000;
}
.slideshow-captions-hidden {
    height: 0px;
    opacity: 0;

}
.slideshow-captions-visible {
    height: 40px;/*making this taller will allow the text to be as many lines as you want*/
    opacity: .8;

}

Original comment by daiv.mow...@gmail.com on 22 Jun 2009 at 10:33

GoogleCodeExporter commented 9 years ago

Original comment by daiv.mow...@gmail.com on 23 Jun 2009 at 10:33