Need to remove the thick borders around the picture slide show thumbnails
Q: I purchased Visual Slideshow. It has been easy to understand and use.
I am not familiar with coding, and need to remove the thick borders around the
thumbnails. The background is black and the contrast from the light blue border is not attractive.
How can I do this?
A: You should find the following code in engine/css/slideshow.css file:
.slideshow-thumbnails a {
display: block;
float: left;
padding: 5px;
position: relative;
}
and set value of 'padding' parameter to '0px':
.slideshow-thumbnails a {
display: block;
float: left;
padding: 0px;
position: relative;
}
Or you can change color of the thumbnail frames in
engine/css/slideshow.css file.
Just find the following code:
.slideshow-thumbnails a:hover {
background-color: #FF9 !important;
opacity: 1 !important;
}
}
.slideshow-thumbnails-active {
background-color: #9FF;
opacity: 1;
}
.slideshow-thumbnails-inactive {
background-color: #FFF;
opacity: .5;
}
and set values you need for 'background-color' parameters.
Related
February 24, 2012 Photo thumbnails in the picture slideshow
Can I make it so that the photo thumbnails in the picture slideshow are not opaque before clicking on them?
February 23, 2012 Frames on the slide shows thumbnails
Is it possible to make the slide shows without the colored frames on the thumbnails?
April 17, 2012 Hide thumbnails in html slide show
Can the Thumbnails be hidden in Visual Slideshow?
.
Make sure to include details on your browser, operating system, Visual SlideShow version, link to your page.