Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #992031

    Hi,

    Could you advise as to how the password protect page can be edited? I´d like to be able to add photos and change the text that appears above the password entry box.

    Thanks

    #992227

    Hey ProTravelGolf,

    Thank you for using Enfold.

    Have you tried using the “Custom Login Page Customizer” plugin?

    // https://wordpress.org/plugins/login-customizer/

    Best regards,
    Ismael

    #992261
    This reply has been marked as private.
    #992265
    This reply has been marked as private.
    #992325

    Hi,

    We use the default wordpress password form template. You can follow tutorials like https://code.tutsplus.com/articles/customizing-and-styling-the-password-protected-form–wp-22375 to customize the form.

    Best regards,
    Dude

    #992520
    This reply has been marked as private.
    #992708

    Hi,

    Glad that you found a plugin. :)

    1.a) Use this css code to move the form downwards.

    #top #wpppass form {
        margin: 50px auto;
    }
    

    1.b – 1.c) Use this one to center align the form fields and adjust the font of the label.

    #wpppass form label {
        text-align: center;
        font-size: 14px;
        font-weight: 400;
    }
    
    #wpppass form input[type="password"], #wpppass form input[type="submit"] {
        margin: 10px auto;
    }

    2.) This one should change the menu font color for that specific page.

    .page-id-483 .main_menu ul:first-child > li > a {
        color: green !important;
    }

    Adjust the color value as needed.

    Best regards,
    Ismael

    #992930

    Ismael,

    Absolute legend!!! Thanks so much!!

    #992986

    Hi,

    Glad we could help you :)

    Best regards,
    Dude

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Edit Password Protect Page’ is closed to new replies.