PDA

View Full Version : Title inside gallery


dhlewis
Sep-21-2007, 09:47 AM
This is probably right in front of my face. . . but I can't find it. Is it possible to have the gallery title show inside the gallery?

TIA

Allen
Sep-21-2007, 10:01 AM
This is probably right in front of my face. . . but I can't find it. Is it possible to have the gallery title show inside the gallery?

TIA
Add this to your CSS and see if it gets what you want.
Not quite sure it works 100% though.
Add it somewhere below this.
#breadcrumb {visibility:hidden;} /* remove navigation */

.smugmug #albumTitle {
position: relative;
visibility:visible !important;
left: -100px;
top: -20px;
font-size: 110%;
}

.smugmug_small #albumTitle {
position: relative;
visibility:visible !important;
left: -100px;
top: -20px;
font-size: 110%;
}

.slideshow #albumTitle {
position: relative;
visibility:visible !important;
left: -100px;
font-size: 110%;
}

/* Move the related keywords line off the top page nav. */

#relatedKeywords {margin-bottom: 20px;}

dhlewis
Sep-21-2007, 10:34 AM
Allen,

thanks it now works for Smugmug and Slideshow view but not the others.

Allen
Sep-21-2007, 10:39 AM
Allen,

thanks it now works for Smugmug and Slideshow view but not the others.
What others? I could only find smugmug, smugmug small and slideshow styles.

dhlewis
Sep-21-2007, 11:40 AM
? you don't see these ?

traditional
all thumbs
filmstrip
critique
journal

Allen
Sep-21-2007, 11:52 AM
? you don't see these ?

traditional
all thumbs
filmstrip
critique
journal
Add the bold for those.

/* title inside gallery */
.critique #albumTitle,
.smugmug #albumTitle {
position: relative;
visibility:visible !important;
left: -100px;
top: -20px;
font-size: 110%;
}


.filmstrip #albumTitle,
.journal #albumTitle,
.allthumbs #albumTitle,
.traditional #albumTitle,
.traditional #albumTitle,
.slideshow #albumTitle {
position: relative;
visibility:visible !important;
left: -100px;
font-size: 110%;
}