Unlock Site

uketeeceeuketeecee Registered Users Posts: 90 Big grins
edited November 11, 2014 in SmugMug Customization
My site is password protected and on the password page I'd like to change the heading from 'Unlock Site' to 'Enter Archive'.
I tried using developer tools to inspect the code and I came up with this, but it doesn't work:
/* Change UNLOCK SITE text*/ 
.sm-node-password .sm-title-xl.sm-heading{
    content:"Enter Archive";
}

See the page here:
ukulelearchive.smugmug.com

Comments

  • AllenAllen Registered Users Posts: 10,013 Major grins
    edited November 11, 2014
    It looks like you have added a box with text above the "Unlock Site". You could add
    the "Enter Archive" to that box and hide "Unlock Site" with some CSS.

    In the box put something like this. If it is a text box change it to a html box.

    Ukulele Archive Under Renovation - Please try again later


    Enter Archive

    This CSS should hide "Unlock Site" by changing text to background color.

    .sm-page-node-Wf8ng #sm-node-password .sm-heading {
    color: #fff;
    }
    Al - Just a volunteer here having fun
    My Website index | My Blog
  • uketeeceeuketeecee Registered Users Posts: 90 Big grins
    edited November 11, 2014
    Thanks Allen, that did the trick. Much appreciated.
Sign In or Register to comment.