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
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
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
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
Ismael,
Absolute legend!!! Thanks so much!!
Hi,
Glad we could help you :)
Best regards,
Dude