Site logo

[Support request] How to Customize a Password-Protedted Page by Elementor

Home Forums Support [Support request] How to Customize a Password-Protedted Page by Elementor

Home Forums Support How to Customize a Password-Protedted Page by Elementor

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1707682
    Tugce

    Hi,

    How can I customize a password-protected page by using Elementor? My main theme for the header and footer is Generatepress but I couldn’t find out how to customize the password-protected pages with Elementor.

    Thanks,

    Efe

    #1707815
    David
    Staff
    Customer Support

    Hi there,

    i am not sure thats possible – you would need to ask Elementor support if they provide that feature.

    If you want you can use some CSS to help style the default form like this:

    /* add background color to password protected content */
    .post-password-required {
      background-color: #ccc;
    }
    /* Limit width of content and center text */
    .post-password-required .inside-article {
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
      padding: 40px;
      text-align: center;
    }
    /* style first paragraph text */
    .post-password-required .inside-article p:first-child {
      font-weight: 700;
      font-size: 24px;
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.