Always show item titles under thumbnail rather than only show on mouseover

veletron

Joined: 2007-07-16
Posts: 31
Posted: Sun, 2013-05-05 09:39

Hi

Can anyone point me in the right direction to have photo titles permanently displayed under thumbnails (like gallery2) rather than only displayed when hovered over with the mouse? I am using the default theme, I am presuming that I will need to modify the theme somehow, but have no clue how.

Regards

Nigel

 
veletron

Joined: 2007-07-16
Posts: 31
Posted: Sun, 2013-05-05 11:13

Hi

Found it:

gallery3/themes/your_theme/css/screen.css

find:

#g-content .g-photo h2,
#g-content .g-item .g-metadata {
display: none;
margin-bottom: .6em;
}

Change 'none' to 'block'. Prob obvious to the rest of you, just not to me!!

or... if you only want the title appearing under the pic without hover take, the text '#g-content .g-photo h2,' out of the above, and make a new block below thus:

#g-content .g-photo h2 {
display: block;
margin-bottom: .6em;
}

Nigel