Removing Owner Log In text

FiestaRedFiestaRed Registered Users Posts: 146 Major grins

This may be a completely stupid question but can I remove the small text at the bottom of pages that say Owner Log In? The reason I say "stupid" is because I would have no where to log in myself then.

The reason I ask is a number of people have commented on the text saying they didn't think it should be on there. Any help or advice would be greatly appreciated.

Comments

  • denisegoldbergdenisegoldberg Administrators Posts: 14,220 moderator

    This is what I use on my site to remove the login but retain the "Powered by SmugMug":

    /* hide powered by smug */
    .sm-page-powered-by a {
      display: none;
    }
    /* re-show "powered by smugmug" without the login link */
    .sm-page-powered-by a:first-child {
      display: inline;
      margin-left: 25px;
      font-size: 90%;
    }
    

    If you want to remove both you just need this:

    /* hide powered by smug */
    .sm-page-powered-by a {
      display: none;
    }
    

    You can log in at www.smugmug.com.

  • FiestaRedFiestaRed Registered Users Posts: 146 Major grins

    Thank you for all the help Denise, I'll give it a try.

  • denisegoldbergdenisegoldberg Administrators Posts: 14,220 moderator

    @FiestaRed said:
    Thank you for all the help Denise, I'll give it a try.

    Oops, forgot to say that I have that in the custom CSS for my theme.

  • AllenAllen Registered Users Posts: 10,008 Major grins
    edited November 27, 2020

    I think logging in at Smugmug is really stupid. I log in from all over my site and want to be at that spot after log on. Logging in at Smug returns you to your homepage completely loosing wherever you where. Very counter productive.

    Edit: example. If I see an error in a photo caption and need to edit it. I want to remain at that photo after logging in. Otherwise it would be impossible to find it especially if gallery was in collage.

    Edit: A way to not lose you page spot is right click on "Power by Smugmug" and pick "open in another tab". Use LogIn there.
    Then just refresh original page and you'll be logged in and have not lost your spot.

    Al - Just a volunteer here having fun
    My Website index | My Blog
  • AllenAllen Registered Users Posts: 10,008 Major grins
    edited November 27, 2020

    There is a way to remove the text and still have the area to click on the log in.
    Could make the text same color as your background.

    Try this with your background color.

    .sm-text-mini .sm-page-login-link {color: #282828 !important;}

    Al - Just a volunteer here having fun
    My Website index | My Blog
Sign In or Register to comment.