how to hide album/photo owner?

Shemo725

Joined: 2008-04-18
Posts: 424
Posted: Mon, 2013-06-03 20:20

since I'm the only user on my gallery, it doesn't make much sense for it to be visible at all.

how can I hide it/remove it?

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 27300
Posted: Mon, 2013-06-03 21:55

That info is provided by the info module. There is a few ways to go about removing that.
# Disable the module.
# Edit the module.
# Edit the theme: http://galleryproject.org/node/110661
# Add some CSS to the theme:

ul.g-metadata li:nth-child(2) {
   display:none;
}

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

 
Shemo725

Joined: 2008-04-18
Posts: 424
Posted: Wed, 2013-06-05 13:50
floridave wrote:
That info is provided by the info module. There is a few ways to go about removing that.
# Disable the module.
# Edit the module.
# Edit the theme: http://galleryproject.org/node/110661
# Add some CSS to the theme:

ul.g-metadata li:nth-child(2) {
   display:none;
}

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

thank you.

 
Shemo725

Joined: 2008-04-18
Posts: 424
Posted: Tue, 2013-07-09 18:59

I'm bumping this again to say that it doesn't appear to be hiding the album/photo author consistently.

I'd like it to hide the name of the album as well, if possible.

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 27300
Posted: Tue, 2013-07-09 21:26

could be the position of li is not consistent either?
http://css-tricks.com/how-nth-child-works/

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team