Reply To: password protect

Home Forums Support Widget Support Other Widgets password protect Reply To: password protect

#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>
Scroll to Top