Libin
Forum Replies Created
-
Are you using any other plugin for redirect? If yes, give a link to it.
Actually I’m not clear about your problem. But try deactivating “Erident Custom Login and Dashboard” plugin, and then check if your problem solved or not.
Like my previous answer, you need to edit two more values.
1) In
.login form .input, .login input[type="text"]
reduce themargin-bottom
value.
Eg:margin-bottom: 5px;
2) Locate
.login form
and reduce the first value ofpadding
Eg:padding: 10px 24px 46px;
Right now there is no option in plugin to do this. But you can change it in core file of WordPress. Keep in mind that the edit you made to core files will loose on next WordPress upgrade.
But I will definitely include this feature in next plugin version. For the time being do this:
Open this file through cPanel or FTP:
wp-admin/css/wp-admin.css
Find this line:
.login form .input, .login input[type="text"]
Edit the font-size to 14px or what value you need. Save it. Done.
Which element’s font-size you wants to reduce? Because labels, links and textbox’s font-size are different.
Also to make the login form smaller, you can try reducing the login form width.
Hey, Sorry for the delay.
Do this, just enter any color in hex-code, say#C8C8C8
in the Form shadow color and press Save Changes. Then it will works perfectly.Hi tripro,
I found a solution for this. Login to the WordPress dashboard -> Plugins.
Now De-activate both WordPress Firewall 2 and Erident Custom Login and Dashboard.
Now click Edit button of “Erident Custom Login and Dashboard” on plugin page.
Now search for the below code.
/** * Add Settings link to plugins */ function add_settings_link($links, $file) { static $this_plugin; if (!$this_plugin) $this_plugin = plugin_basename(__FILE__); if ($file == $this_plugin){ $settings_link = '<a href="options-general.php?page=erident-custom-login-and-dashboard">'.__("Settings", "erident-custom-login-and-dashboard").'</a>'; array_unshift($links, $settings_link); } return $links; } add_filter('plugin_action_links', 'add_settings_link', 10, 2 );
and replace it with:
/** * Add Settings link to plugins */ function er_add_settings_link($links, $file) { static $this_plugin; if (!$this_plugin) $this_plugin = plugin_basename(__FILE__); if ($file == $this_plugin){ $settings_link = '<a href="options-general.php?page=erident-custom-login-and-dashboard">'.__("Settings", "erident-custom-login-and-dashboard").'</a>'; array_unshift($links, $settings_link); } return $links; } add_filter('plugin_action_links', 'er_add_settings_link', 10, 2 );
Now activate both plugins. Thats all
I will make this change in next version. So go and edit it.
Cheers!!!
That plugin’s Compatible was up to: 3.0.5. It was Last Updated on 2010-10-29. May be that will conflicting.
Try deactivating the WordPress Firewall 2 plugin and then activate Erident Custom Login and Dashboard.
After that, try activating WordPress Firewall 2
Hey, I had fixed those bugs and released the new version.
Once again thanks for the support.
Hey, I had added an option for Enable/Disable shadow for the Login Form. Also you can customize the shadow color.
Just update the plugin. Thats all.
Oh thank you so much dude. You are awesome.
I will fix these minor errors in next release.
Definitely I will give this option in next version. For the time being you can apply the below code to your style.css
.login form { moz-box-shadow: rgba(255, 0, 0, 0.7) 0 4px 10px -1px; -webkit-box-shadow: rgba(255, 0, 0, 0.7) 0 4px 10px -1px; box-shadow: rgba(255, 0, 0, 0.7) 0 4px 10px -1px !important; }
Make sure to change the rgba color to your own.
If you completely needs to disable the shadow, apply the below css.
.login form { moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none !important; }
Ok. That will work. But editing the core files is not advisable. You will lost these customization upon next WordPress update.
But hopefully I will release the next version with this options.
Yes. You can tweak the styles of login page and can increase the size of logo.
Currently this feature is not included in plugin settings. But you can expect this in future release.
To change logo size, add below code in your style.css and change the values to yours.
.login h1 a { background-size: 274px 63px !important; width: 326px !important; height: 67px !important; }
Happy to hear that the problem solved.
Don’t forget to rate my plugin. ??
Also make sure to click the “WORKS” button under Compatibility.
https://www.ads-software.com/extend/plugins/erident-custom-login-and-dashboard/Enjoy your completely branded WordPress Version.