1. Is there a way for the titles of the individual galleries to show up on the main gallery page under the gallery thumbnail? For example I want the title "baby collection" to show on the main gallery under the photo for that gallery, not just in the actual gallery.
The text 'Baby Collection' is already displayed below the correponding thumbnail. However, it is not visible as the color of the text is the same color as the background of your web page (white).
You can change the color of the text by editing the 'svmanager/index.php' file (in a plain text editor) and changing the a.link, a.visited color on line 30 in the following section of code:
a:link, a:visited {
color: #FFF;
}
You may also wish to change the color of the text when users hover over the link by changing the a.hover color on line 33 in the following section of code:
2. It looks like the thumbnail is cutting off some of the photo for the main gallery page, can this be adjusted?
You can change the dimensions of the galleries index page thumbnails by editing the 'svmanager/includes/constants.php' file and changing the values for INDEX_THUMB_WIDTH and INDEX_THUMB_HEIGHT in lines 40-43 inclusive:
// Width of thumbnails in galleries index (px)
define('INDEX_THUMB_WIDTH', 65);
// Height of thumbnails in galleries index (px)
define('INDEX_THUMB_HEIGHT', 65);
If your thumbnails have the same aspect ratio as the main images themselves, then there should be no cropping within the thumbnails.
2. I was wondering how to get rid of the grey strip along the bottom of my photos when you hover the over the image?
This is the caption area. Your gallery currently uses captionPosition="OVERLAY_BOTTOM".
Try setting the captionPosition to a value other than on the overlay, or to 'NONE'.
Possible values for the captionPosition configuration option can be found in the Caption Options section of the 'SimpleViewer-Pro Config Options' page.
Please note that the line numbers quoted above apply to the current version of svManager and may differ slightly for previous versions.
For further information on customizing the galleries index page, please see the Editing the automatic galleries index page section of the svManager support page.
Steven Speirs
SimpleViewer Support Team