Home Forums Support Widget Support Other Widgets password protect

Viewing 5 posts - 16 through 20 (of 20 total)
  • Author
    Posts
  • #15077
    Anonymous
    Inactive

    Works!

    Thanks-a-lot =)

    #15081
    responsive-muse
    Keymaster

    Great!

    #22109
    Anonymous
    Inactive

    Do you think it is possible to make the password field pop in the middle of the page with a semi transparent background where you can still see the current page behind instead of going into a separate temporary page?

    #22155
    responsive-muse
    Keymaster

    Hi Emilio!

    You can change it using this code. Change color values and opacity level as you want. The opacity level describes the transparency level, where 1 is not transparent at all and 0 is completely transparent.

    <style>
    #overlaypass {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #ffffff !important;
        opacity: 0.9 !important;
        z-index: 9990000;
        text-align: center;
    }
        form {
        position: fixed;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    
    </style>
    #22199
    Anonymous
    Inactive

    Perfect. I can change it from here. Thanks!

Viewing 5 posts - 16 through 20 (of 20 total)
  • The topic ‘password protect’ is closed to new replies.
Scroll to Top