Title: problems customizing
Last modified: November 15, 2022

---

# problems customizing

 *  Resolved [care2michelle](https://wordpress.org/support/users/care2michelle/)
 * (@care2michelle)
 * [3 years, 6 months ago](https://wordpress.org/support/topic/problems-customizing/)
 * I’m using multi-site and I’m using WP Engine, they have configured the caching
   set up as you recommended.
 * However, I cannot style the login page. I have installed the plug you recommended:
   Login Designer. I can style the login page from the appearance–>customize–>login
   designer and I love the way it looks. However, when you access my site, it’s 
   not the styled login that shows up, but the default style-lacking WP login. However,
   if you access the admin login (site.com/wp-admin), then the beautiful login screen
   shows up. It appears that it’s only styling the admin login page and not the 
   password protected page.
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fproblems-customizing%2Fpage%2F2%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 15 replies - 16 through 30 (of 43 total)

[←](https://wordpress.org/support/topic/problems-customizing/?output_format=md) 
[1](https://wordpress.org/support/topic/problems-customizing/?output_format=md) 
2 [3](https://wordpress.org/support/topic/problems-customizing/page/3/?output_format=md)
[→](https://wordpress.org/support/topic/problems-customizing/page/3/?output_format=md)

 *  Plugin Support [M Haseeb](https://wordpress.org/support/users/haseeb0001/)
 * (@haseeb0001)
 * [3 years, 6 months ago](https://wordpress.org/support/topic/problems-customizing/page/2/#post-16270862)
 * [@care2michelle](https://wordpress.org/support/users/care2michelle/)
 * You’re welcome.
 *  Thread Starter [care2michelle](https://wordpress.org/support/users/care2michelle/)
 * (@care2michelle)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/problems-customizing/page/2/#post-16282890)
 * I’m grateful that you’ve found a fix. Any timeline for when that new version 
   might be out?
 *  Plugin Support [M Haseeb](https://wordpress.org/support/users/haseeb0001/)
 * (@haseeb0001)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/problems-customizing/page/2/#post-16285134)
 * [@care2michelle](https://wordpress.org/support/users/care2michelle/)
 * Hopefully, at the end of next month, we will release the new version.
 * Thanks
 *  Thread Starter [care2michelle](https://wordpress.org/support/users/care2michelle/)
 * (@care2michelle)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/problems-customizing/page/2/#post-16285150)
 * oh, not until the end of January? Last week you indicated it would be a few days.
   I may have to find another solution. thank you.
 *  Plugin Support [M Haseeb](https://wordpress.org/support/users/haseeb0001/)
 * (@haseeb0001)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/problems-customizing/page/2/#post-16296566)
 * [@care2michelle](https://wordpress.org/support/users/care2michelle/), we are 
   already working on it, and it’s under QA; we will release the updated version
   with fixes and new features asap.
 * Thanks
 *  Thread Starter [care2michelle](https://wordpress.org/support/users/care2michelle/)
 * (@care2michelle)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/problems-customizing/page/2/#post-16296626)
 * That’s great! I’m looking forward to it. Thank you.
 *  Thread Starter [care2michelle](https://wordpress.org/support/users/care2michelle/)
 * (@care2michelle)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/problems-customizing/page/2/#post-16328380)
 * Thought I’d check back with you and see if you have an updated timeframe on the
   new release. Our project has been delayed until Jan. 6th (at the earliest). We
   do have a temporary fix in place, but it requires usernames and passwords, and
   we’d rather just do password access. Thanks!
 *  Plugin Support [M Haseeb](https://wordpress.org/support/users/haseeb0001/)
 * (@haseeb0001)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/problems-customizing/page/2/#post-16335143)
 * [@care2michelle](https://wordpress.org/support/users/care2michelle/), you and
   test and use this [Beta version](https://drive.google.com/file/d/19CkySwgYU9SvWAuDwo2vtwtnipJPGzqp/view)
   and let me know if there are any issues.
 * Thanks
 *  [ARWD](https://wordpress.org/support/users/arapps92/)
 * (@arapps92)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/problems-customizing/page/2/#post-16338099)
 * [@care2michelle](https://wordpress.org/support/users/care2michelle/)
 * You can add your own styling without using a plugin, using PHP and CSS. The plugin
   has it’s own hook for adding custom scripts to the head of the page:
 *     ```wp-block-code
       password_protected_login_head
       ```
   
 * You can add the code to your child theme’s functions.php. For example, this will
   change the logo:
 *     ```wp-block-code
       add_action("password_protected_login_head", "custom_login_css");
       function custom_login_css() { ?>
         <style>
         body.login #login h1 a {
           background-image: url('https://domain.com/wp-content/uploads/2023/01/logo.png');
           width:100%;
           background-size: contain;
           }
         </style>
       <?php }
       ```
   
 * Adding the following hook as well will apply the CSS to the default WP login 
   page as well:
 *     ```wp-block-code
       add_action("login_head", "custom_login_css");
       ```
   
 *  Thread Starter [care2michelle](https://wordpress.org/support/users/care2michelle/)
 * (@care2michelle)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/problems-customizing/page/2/#post-16338402)
 * I installed the beta version, and it still doesn’t give me the menu option under
   appearance–> customize for Password Protected, only for Login Designer. So I 
   still have no way to design the Password Protected login page apart from using
   code. It does add Password Protected to my main WordPress dashboard menu, but
   the options there do not allow for changing the appearance of the password protected
   login, other than the option to add text before and after the login. The styling
   options (logo, colors etc.) are not available in that menu, and Password Protected
   still doesn’t show up on the customization menu.
   I’m going to try using CSS to
   style it, but I don’t normally code, so I’d really rather not do it that way.
   Not sure why I’m not having any success with the beta version.
    -  This reply was modified 3 years, 5 months ago by [care2michelle](https://wordpress.org/support/users/care2michelle/).
 *  Plugin Support [M Haseeb](https://wordpress.org/support/users/haseeb0001/)
 * (@haseeb0001)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/problems-customizing/page/2/#post-16341129)
 * [@care2michelle](https://wordpress.org/support/users/care2michelle/) Sorry
 * Use the below Beta versions and let me know, make sure you can create backup 
   of your website or test it on your staging website first.
 * [Login Designer](https://drive.google.com/file/d/1F4odfJlGSmu5kH5jNAX3lxNFWIidLF50/view?usp=share_link)
 * [Password Protected](https://drive.google.com/file/d/19CkySwgYU9SvWAuDwo2vtwtnipJPGzqp/view?usp=share_link)
 * Thanks
 *  Thread Starter [care2michelle](https://wordpress.org/support/users/care2michelle/)
 * (@care2michelle)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/problems-customizing/page/2/#post-16341631)
 * I don’t have any trouble installing the beta version of Password Protected linked
   above. However, I cannot install the beta version of Login Designer linked above–
   see the video: [https://www.loom.com/share/2e79776a7f9542789dad87c19297022e](https://www.loom.com/share/2e79776a7f9542789dad87c19297022e)
 * Can you try re-sending the link and I’ll try again?
 * Thank you so much for working with me on this issue!
 *  Plugin Support [M Haseeb](https://wordpress.org/support/users/haseeb0001/)
 * (@haseeb0001)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/problems-customizing/page/2/#post-16345078)
 * [@care2michelle](https://wordpress.org/support/users/care2michelle/) Sorry, you
   can download Login Designer from [here](https://we.tl/t-2Dz7ivY0gS).
 *  Thread Starter [care2michelle](https://wordpress.org/support/users/care2michelle/)
 * (@care2michelle)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/problems-customizing/page/2/#post-16345954)
 * Thank you! I am able to customize it now with both those beta versions installed.
   Is there any way to change the size and positioning of the logo? When I replace
   it, the logo is rather small. I’m sure I can use CSS to do that.
 *  Plugin Support [M Haseeb](https://wordpress.org/support/users/haseeb0001/)
 * (@haseeb0001)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/problems-customizing/page/2/#post-16347130)
 * [@care2michelle](https://wordpress.org/support/users/care2michelle/)
 * Great, thanks for updating us.
 * At the moment size option is not available, and we will try to add this in the
   future.
 * We would appreciate a kind and honest review on our Password Protected and Login
   Designer profile
 * Thanks

Viewing 15 replies - 16 through 30 (of 43 total)

[←](https://wordpress.org/support/topic/problems-customizing/?output_format=md) 
[1](https://wordpress.org/support/topic/problems-customizing/?output_format=md) 
2 [3](https://wordpress.org/support/topic/problems-customizing/page/3/?output_format=md)
[→](https://wordpress.org/support/topic/problems-customizing/page/3/?output_format=md)

The topic ‘problems customizing’ is closed to new replies.

 * ![](https://ps.w.org/password-protected/assets/icon-128x128.gif?rev=2824217)
 * [Password Protected — Lock Entire Site, Pages, Posts, Categories, and Partial Content](https://wordpress.org/plugins/password-protected/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/password-protected/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/password-protected/)
 * [Active Topics](https://wordpress.org/support/plugin/password-protected/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/password-protected/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/password-protected/reviews/)

 * 43 replies
 * 6 participants
 * Last reply from: [M Haseeb](https://wordpress.org/support/users/haseeb0001/)
 * Last activity: [3 years, 2 months ago](https://wordpress.org/support/topic/problems-customizing/page/3/#post-16580592)
 * Status: resolved