Could you look at my site and tell me how with Showkase I can get the footer type be as low as possible and have the image and caption to be situated right above?
You should be able to increase the height of your gallery (thereby pushing the footer down the page) by editing the gallery page and entering a positive integer in the 'Override Theme Settings -> External fit px' input field.
You could also remove the default margin below the gallery and the default margin and padding at the top of the footer by adding the following code to your '_themes/kosel/css/custom.css' file:
.gallery {
margin-bottom: 0;
}
footer {
margin-top: 0;
padding-top: 0;
}
On the Sarah Lee demo that also uses the Kosel theme, how do the images fill that whole screen in the small screen version?
As you have noted, the Juicebox galleries in the Sara Lee demo site use Splash Pages which expand the galleries full-browser when clicked.
The Splash Page was designed to be used when the gallery is embedded in a web page (at less than 100% x 100%) and displayed on a small screen device where the gallery itself might appear too small. When the Splash Page is clicked, the gallery is expanded to fill the browser window which allows more space for your images to be seen better.
Change showSplashPage="NEVER" to showSplashPage="AUTO" in your own gallery and the Splash Page should be used by default on small screen devices.
For more information on the Splash Page and how Juicebox adapts to different devices and screen sizes, please see here.
You mentioned in another thread that since there's no place to put a link to a custom CSS file I should make my changes in admin/plugins/juicebox/master…
If you use the Kosel theme, then you can add custom CSS code directly to the '_themes/kosel/css/custom.css' file. (For the Boma theme, use the file '_themes/boma/css/custom.css'.).
If you want to add a link to an external CSS file in all your Showkase pages, then open the '_themes/base/pagetypes/layout.tpl' file in a plain text editor and add your link tag (e.g. <link rel="stylesheet" href="/css/styles.css">) just before the closing </head> tag on line 18. Please note that the line number refers to the current version of Showkase (v1.3.6).
If you really want to modify the 'theme.css' file for Juicebox galleries, then you should modify the 'admin/plugins/juicebox/master/jbcore/classic/theme.css' file and then republish your site afterwards (similar to the procedure for Installing a Pro Viewer).
Showkase copies the 'admin/plugins/juicebox/master/jbcore/' folder to the '_viewers/juicebox/' directory (for use within the site) which is why modifications you make to the '_viewers/juicebox/jbcore/classic/theme.css' file are overwritten when you publish your site.