How to hide all album names in the home page?

ed@edarias.com

Joined: 2013-11-10
Posts: 2
Posted: Sun, 2013-11-10 23:33

How to hide all album names in the home page EA

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 27300
Posted: Mon, 2013-11-11 03:44

This should help you get started:
http://galleryproject.org/node/105477

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 27300
Posted: Mon, 2013-11-11 03:48

Or you can add:

.g-album h2 {
display: none
}

to you css

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

 
ed@edarias.com

Joined: 2013-11-10
Posts: 2
Posted: Mon, 2013-11-11 14:05

Thank you so much, Dave. It works like a charm.
For clean_canvas theme, add this code to the bottom of
...[galleryFolder]\themes\clean_canvas\css\screen_layout_base.css

/* hide album names on Home page */
.g-album h2 { display: none }

/* hide image names on album page */
li.g-photo h2 { display: none !important; }

EA