Deleting the Login Button

JB2448
JB2448's picture

Joined: 2010-10-02
Posts: 13
Posted: Mon, 2011-05-23 03:51

How do you delete the login button on a Gallery installation? I'm using the Widewind theme, if that's a factor.

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 23886
Posted: Mon, 2011-05-23 04:41

you could use css to hide it. Im sure this has been asked before.
How are you the admin to login?

Dave

_____________________________________________
Blog & G2 || floridave - Gallery Team

 
JB2448
JB2448's picture

Joined: 2010-10-02
Posts: 13
Posted: Mon, 2011-05-23 04:48

I just put /login/ajax at the end of the URL of my gallery (so it's http://jb2448.info/login/ajax) and login from there.

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 23886
Posted: Tue, 2011-05-24 21:05

Add

#g-login-menu {
display: none;
}

to your css

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

 
JB2448
JB2448's picture

Joined: 2010-10-02
Posts: 13
Posted: Tue, 2011-05-24 22:30

Thank you very much for your help! You guys rock!