• Resolved fumacento

    (@fumacento)


    Hello, I have a question about customizing a webpage. I’m trying to make the header and footer invisible only on a specific page, while also centering a password input plugin in the middle of the page. I’ve protected this page, but it looks unattractive with the current layout. I don’t have much experience with CSS or HTML, but I’m willing to give it a try if I have the right instructions. Can anyone provide guidance on how to achieve this?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author BWPS Team

    (@buildwps)

    Hi @fumacento ,

    Thank you for reaching out to us and sorry for the late response.

    First, go to?Appearance?>>?Customize?in your WordPress dashboard. Then open?Additional CSS?section and start adding custom style.

    1. To make the header and footer invisible only on a specific page

    /* Replace 'your-page-id' with the actual ID or class of your specific page */
    .your-page-id .site-header,
    .your-page-id .site-footer {
        display: none;
    }

    2. Centering a password input plugin in the middle of the page (Single Protection Form)

    .your-page-id .ppw-post-password-container{
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
    }

    3. Replace .your-page-id with the actual identifier of your page

    Let us know if it works.

Viewing 1 replies (of 1 total)
  • The topic ‘Layout customization issue.’ is closed to new replies.