• Hi,

    My privacy policy page is opaque (not transparent) and I would like it to be. How to proceed ?

Viewing 1 replies (of 1 total)
  • If you want to have glass effect you can use the below code.

    //to get the glass effect (transparent effect)//
    body{
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    }
Viewing 1 replies (of 1 total)
  • The topic ‘opacity on page’ is closed to new replies.