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 |
|

Posts: 27300
This should help you get started:
http://galleryproject.org/node/105477
Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team
Posts: 27300
Or you can add:
.g-album h2 { display: none }to you css
Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team
Posts: 2
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