Title: Custom CSS
Last modified: September 1, 2016

---

# Custom CSS

 *  Resolved [khunmax](https://wordpress.org/support/users/khunmax/)
 * (@khunmax)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/custom-css-153/)
 * Hi
 * Thanks for the plugin. It is a good idea.
 * I have road tested it on my site and the functionality is good.
 * I run heavily styled login and rego and password pages.
 * I use the Birds Custom Login plugin.
 * Is it possible to style the font, background and borders of the suggest password
   button and your remember password warning box. And could the styling be added
   to the custom css section of the BCL plugin? That would avoid any function editing
   would it not?
 * If so, I would be grateful to have the relevant css elements.
 * FYI, I also run the Add Custom CSS plugin. But I assume it is of little value
   for styling your plugin?
 * Thanks in advance for your assistance.
 * Kind Regards
 * [https://wordpress.org/plugins/clarify-password-reset/](https://wordpress.org/plugins/clarify-password-reset/)

Viewing 6 replies - 1 through 6 (of 6 total)

 *  Thread Starter [khunmax](https://wordpress.org/support/users/khunmax/)
 * (@khunmax)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/custom-css-153/#post-7465479)
 * I have located your plugin css files. To obtain the relevant elements.
 * However, when I enter the desired amendments into Add Custom Css it has no effect.
 * I can however edit the css in your plugins files with dreamweaver.
 * How can I ensure these editing changes are not lost when I update your plugin.
 *  Thread Starter [khunmax](https://wordpress.org/support/users/khunmax/)
 * (@khunmax)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/custom-css-153/#post-7465480)
 * Perhaps in your next update you could include an edit css option in your plugin
   UI?
 *  Plugin Author [Fidgety Lizard](https://wordpress.org/support/users/fliz/)
 * (@fliz)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/custom-css-153/#post-7465491)
 * Hi khunmax,
 * It’s easy to load some custom CSS for the login pages from your theme by hooking
   into the [login_head](https://codex.wordpress.org/Plugin_API/Action_Reference/login_head)
   action.
 * Just add some code like this to your theme’s functions.php file, and then create
   the ‘custom-login-styles.css’ file in your theme folder (and put your desired
   CSS styling in that file):
 *     ```
       function
       my_custom_login()
       {
       echo '<link rel="stylesheet" type="text/css" href="' . get_bloginfo('stylesheet_directory') . '/custom-login-styles.css" />';
       }
       add_action('login_head', 'my_custom_login');
       ```
   
 * This should work in a normal WP install, though I haven’t tried it with Birds
   Custom Login.
 * If you want to avoid this, I would have thought that adding the styling via BCL
   should work too – but maybe its styling is being loaded before the CPR styling?
   You could try adding ‘ !important’ to each line of your custom styling added 
   via BCL (to override any styling from the CPR even if it’s loaded afterwards)
   and see if that does the trick…
 *  Thread Starter [khunmax](https://wordpress.org/support/users/khunmax/)
 * (@khunmax)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/custom-css-153/#post-7465497)
 * I can confirm that you can use the custom css to style your button and warning
   by placing it in the custom css box in Birds plugin.
 * I am already running a custom functionality plugin so I will add your snippet
   to it and a custom css sheet and then try styling from there.
 * Will report back tomorrow.
 * Kind Regards
 * Max
 *  Thread Starter [khunmax](https://wordpress.org/support/users/khunmax/)
 * (@khunmax)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/custom-css-153/#post-7465498)
 * Maybe you guys could add a custom css box to your UI in your next update.
 *  Plugin Author [Fidgety Lizard](https://wordpress.org/support/users/fliz/)
 * (@fliz)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/custom-css-153/#post-7465535)
 * Will have a think about it for any future release of the plugin.

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Custom CSS’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/clarify-password-reset_f2d363.svg)
 * [Clarify Password Reset](https://wordpress.org/plugins/clarify-password-reset/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/clarify-password-reset/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/clarify-password-reset/)
 * [Active Topics](https://wordpress.org/support/plugin/clarify-password-reset/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/clarify-password-reset/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/clarify-password-reset/reviews/)

 * 6 replies
 * 2 participants
 * Last reply from: [Fidgety Lizard](https://wordpress.org/support/users/fliz/)
 * Last activity: [9 years, 11 months ago](https://wordpress.org/support/topic/custom-css-153/#post-7465535)
 * Status: resolved