Well,as in general case,we all want wordpress to reflect the look and feel our our website ,Is not it?So everything works well.You do a lot of customization using plugins,you build a brand new theme to reflect your own website’s main theme(I mean goal). But after all of these efforts,there comes an issue of customizing login/register/password reset page. by default a wordpress login page looks like this
If you look closely at the default wordpress login page, you will certainly like to modify several things.just to mention,I will list the things here one by one.
- Logo:-by default,It’s wordpress logo.So after putting so much effort in customizing the theme,don’t you wish,It should be your own logo.I think you want it to be your own logo.
- The site linked with the logo:If you click on the default wordpress logo it will take you to http://wordpress.org.do you want it to work it in that way? For me absolutely not.It should take to my own website.I believe in giving credits,as you may see from the footer of my site,I have credited wordpress.org,but when the matter comes to my login page ,then I want the clicking on logo should take back to my website.
- The description(Or more precisely,the title of anchor tag linked with logo):-It shows “powered by wordpress”,but I want it to reflect my own websites description on mouseover,don’t you want so?
Well,I think ,there are more things,like the background color of the page,the text formatting and more,that you may be interested in changing. Now there are tow approaches (or may be there are many approaches that may be used).
1.Editing wp-login.php(bad approach):-Sometimes,people believe in changing the code for wp-login.php and overriding the default logo by uploading their own logo in wp-admin/images directory.In my view,It’s a bad approach,why?because every time you upgrade to a new version of wordpress,you need to repeat the same steps.The second reason,I don’t believe in directly editing the core files,until there is no way to accomplish the task.
2.Use filters/action hooks to overwrite css and site url,header description(better approach):-Wordpress provide several hooks to call your own functions at different steps.If you check wp-login.php(not recommended for non tech. users),you will see several hooks,like login_head,login_headerurl,login_headertitle.There are several more,but for our purpose these three are sufficient. The action hook login_head,allows us to inject own own script and css into the wp-login.php.So we can simply use this to override the default css and force wordpress to use our customized css. The filter hook login_headerurl,can be used to control the url which is linked with the logo,in default case the url is http://wordpress.org.we use it as following.
add_filter("login_headerurl","tiw_site_url"); /*function to return the current site url */ function tiw_site_url($url) { return get_bloginfo('siteurl');//return the current wp blog url }
It overwrites,the default and returns your current blog address which is linked to the logo. Now,we change the description,i.e the text shown on moueover on the logo.For this the filter login_headertitle comes handy.we use it as following.
add_filter("login_headertitle","tiw_login_header_title"); /*function to return the description of the current blog*/ function tiw_login_header_title($message) { return get_bloginfo('description'); /*return the description of current blog */ }
So we are done with the site linking to logo and the description shown.Now,the time is for changing logo.There are several ways in which the logo can be changed. For example you can inject some css in header,using the login_head action hook.But I will use another approach.I will inject an external stylesheet into the head,containing just one line.The content of the stylesheet,say custom custom-login.css will be
#login h1 a{background:url(logo.png) no-repeat;}
Here we are simply overwriting the wordpress logo with our own logo in the plugin directory wp-customized-login.Here logo.png is your website’s logo,If you want to put a gif or jpg logo,just edit the css file,and change logo.png with the name of your logo.Here goes the code which I wrote to inject the css file.
add_action("login_head","tiw_wp_customized_login"); /*add the CSS file in the head */ function tiw_wp_customized_login() { $stylesheet_uri=get_bloginfo('siteurl')."/".PLUGINDIR."/".dirname(plugin_basename(__FILE__))."/custom-login.css"; echo " ";/*inject the external css file in the head */ }
Here is how the custom login page looks after activating the plugin.
For download link of the plugin,please check the bottom of the post.
Here are some of the images ,showing how the login,register and password retrieval page looks on my site.
Now a screen shot of registration page

And Finally a screen shot of Password retrieval page
Download Wp Customize Login here from wordpress official plugin repository
How to Install
For wordpress version 2.7
- Use wordpress plugin installer (Plugins->add new) to upload the zip file wp-login-customize.zip
- Activate the plugin through the ‘Plugins’ menu in WordPress
- delete logo.png from ‘/wp-content/plugins/wp-customized-login’,and upload your logo there,rename it to logo.png.
If your logo is jpg or gif,edit custom-login.css and change the logo.png with yourlogoname.extension
For wordpress version 2.5 to 2.6.5
- Unzip the wp-customized-login.zip
- Upload folder wp-customized-login to the `/wp-content/plugins/` directory
- Activate the plugin through the ‘Plugins’ menu in WordPress
- delete logo.png from ‘/wp-content/plugins/wp-customized-login’,and upload your logo there,rename it to logo.png.
If your logo is jpg or gif,edit custom-login.css and change the logo.png with yourlogoname.extension
Frequently Asked Questions
I want more customization,like login page colors etc,how can I do that?
Well,I have put all the required css selector there,if you are good at editing css,go ahead,edit custom-login.css,uncomment the selectors and put your styles there.It will work perfectly.
If you use firefox,get the firebug extension and check the dom of your login page,You can easily edit it.
Please feel free to leave your comments and suggestions.I promise to reply to each and every comment and query.
If you enjoyed this post, make sure you subscribe to my RSS feed!We will keep coming with more informative tips,tricks,tutorials to keep you updated with wordpress/buddypress/wordpress mu regularly.If you want to help us,You can ,by spreading the words.We provide free and premium plugins/support for wordpress Mu,buddypress at a very low cost (starting with $30 for 3 months membership).If you or anyone you know,needs some real good plugins/themes for their wordpress Mu/buddypress powered site, Please refer them to http://BuddyDev.com.We will highly appreciate your support and keep coming with more useful and free stuffs.
Related posts:
- Tweaking the registration link at wpmu login page to point to buddypress registration page well,It is not that hard.If you are using buddypress and...
- Changing Buddypress default logo with a custom logo in buddypress admin bar Do you use buddypress? If you use buddypress, you might...
- Tweak your buddypress login form to redirect to the page user was viewing while login If you are using buddypress,I am sure In most of...
Related posts brought to you by Yet Another Related Posts Plugin.



![[blinklist]](http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/blinklist.png)
![[Bloglines]](http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/bloglines.png)
![[del.icio.us]](http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/delicious.png)
![[Digg]](http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/digg.png)
![[dzone]](http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/dzone.png)
![[Facebook]](http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/facebook.png)
![[Ma.gnolia]](http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/magnolia.png)
![[Mister Wong]](http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/misterwong.png)
![[Reddit]](http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/reddit.png)
![[Sphere]](http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphere.png)
![[Sphinn]](http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/sphinn.png)
![[StumbleUpon]](http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/stumbleupon.png)
![[Technorati]](http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/technorati.png)
![[Email]](http://www.thinkinginwordpress.com/wp-content/plugins/bookmarkify/email.png)



How do I make it so that my login page also displays on option to register?
As for the logo change…the plugin worked flawlessly…thanks!
Andy
hello Andy
Thanks for visiting and the message.Well,you may enable registration option in settings->General(Any one can register option),just check the check box and save.
I am working on a new site (www.smashingonlinesurveys.com) built on the WordPress 2.7 platform. I used your plugin to try and brand the login. However, my logo is a different size from yours. I do not see where to change the code in the wp-customized-login.php. If go to my site you will see that about half of my image is chopped off.
Thanks for your help and such a great idea for a plugin
blessings,
Wendy
hi Wendy,Thanks for dropping by.
I just checked your website.here is what you need to do.Open the custom-login.css file(you can find it in wp-customized-login folder).Now you may see something written as
#login h1 a {custom-login.css (line 2)background:transparent url(logo.png) no-repeat scroll 0 0;
}
change that to
#login h1 a {custom-login.css (line 2)
background:transparent url(logo.png) no-repeat scroll 0 0;
height:277px;
}
Where height attribute is only to define the height of your logo(normally not required),I put it as 277px as your logo is 277px.all the best with your project.
regards
Brajesh
Brajesh,
Thank you very much! It would have taken me hours to figure out what was wrong!
blessings,
Wendy
Brajesh,
Thanks for this, very helpful.
Btw, where would one include the code directly into the wp-login.php file; i am a PHP dummy but i would rather have the code directly in to cut on the number of plugins.
Thanks
Very simple yet powerful and useful plugin! Thank you!
What an excellent plugin! Hats off to you.
It would be even more amazing to add custom background for the pages also, any thoughts?
hi Azzam
Thanks for the nice comments.
If you want to modify the background of login page,please look inside custom-login.css and uncomment the commented selectors.Then you may add your own rules for the background.
btw, if you are looking for adding custom background images for each post,page, you may consider my another plugin, “Wp Unique Article Header Image”
Hope it helps.
Brajesh
My logo appears offset from the box containing the login/register info, a little too left and stops a little before the right side.
I tried adding a width property like you did with the height, but it didn’t work. Can you help??
hi Steve
you need to add one line into custom-login.css
on line number 2 of custom-login.css you will see a selector
#login h1 a{
background:transparent url(Weblogo.jpg) no-repeat scroll 0 0;
display:block;
height:100px;
margin-left:15px; /*i have added margin-left 15 px and it works */
width:300px;
}
Hope it helps.
Please let me know if you have any issue.
regards
brajesh
Thank you for your help, Brajesh. Wonderful plugin.
i cant wait to try this.. of corz im interested and excited to see the result.. thanks a lot!
Thanks for this plugin! It’s fantastic!
Here’s how I used it on a client’s site: http://www.jaqdwear.com/wp-login.php
Here’s the CSS:
#login h1 a { background: url(logo150.png) no-repeat top center; height: 150px;}
body.login { background: url(frog_logo_back.png) no-repeat bottom right #000; }
#login { height: 600px; }
.login #nav a { color: #FF1493 !important; }
.login #nav a:hover { color: #FFF !important; }
#login form .submit input {
background: #FF1493 none repeat scroll 0 0;
border-color: #FFF !important;
color: #FFFFFF !important;
font-weight:bold;
}
#loginform { background: #000; }
#loginform p { }
#loginform label { font-family: verdana,arial; font-size:0.9em; }
#registerform { background: #000; }
#registerform label { font-family: verdana,arial; font-size:0.9em; }
#lostpasswordform { background: #000; }
#lostpasswordform label { font-family: verdana,arial; font-size:0.9em; }
#wp-submit { }
#forgetmenot { }
.login #backtoblog a { color: #FFF; }
.login #backtoblog a:hover { color: #FF1493; }
#nav { }
.message {
background-color: #444 !important;
color: #FFF;
border-color: #FF1493 !important;
}
hi Craig
wow,that looks wonderful.You have customized in very nice way.
Thanks for leaving the comment and the css.
hope it will help someone.
Brajesh
Hello and thanks for your plugin,
After activation, my custom logo wasn’t displayed on the login page, so I opened wp-customized-login.php in a text editor and found that, if your WordPress install is in a folder but your blog address is the same as your domain, you need to modify line #32:
replace:
$stylesheet_uri=get_bloginfo(’siteurl’).”/”.PLUGINDIR.”/”.dirname(plugin_basename(__FILE__)).”/custom-login.css”;
with:
$stylesheet_uri=get_bloginfo(‘wpurl’).”/”.PLUGINDIR.”/”.dirname(plugin_basename(__FILE__)).”/custom-login.css”;
hi Lionel
Thanks for pointing the issue.I hope it will help others looking for the same things.
Cheers!
Brajesh
How can I change the color of the entire background throughout the whole page? So far, whenever I try to change it from the css, it only color’s half the screen to just below the “lost your password” link. Other than my small problem, great plugin!
I am having trouble changing the colour of the background from the CSS file. Whenever I set a background colour, it only fills the screen down to just below the “Lost your password” link. You wouldn’t happen to know how to change the colour of the whole background? Other than that, great plugin!!
@Luke
Hello Luke.Thanks for using this plugin.Well,I am not sure what you mean by saying tha background color below the forgot password link.
Well you may try putting this in the css file
body.login {
display:block;
background:red; /* or what ever color you want */
}
btw,if it does not solve your poblem ,please point me to your site and I will do my level best to assist you.
Regards
Brajesh
Sorry but that didn’t change anything, still looks the same. My site that its affecting isn’t online as its just a test installation. Here’s my current css:
body.login {
color: #9CC4C7;
background: #102030 url(bg-new-Blue.jpg) no-repeat center top;
font: 11px/18px Georgia;
}
And a screenshot here: http://img19.imageshack.us/my.php?image=whitespace.png
hi Luke
Thanks for putting the image.Now I got the clue ,why it is happening so.It is , because the margin on login div is set to be 7em by default from top and bottom.So it’s that margin causing the whitespace at bottom .you may reset that margin using the following code
body.login #login{
margin:7em auto 0 auto; /***set the margin from bottom to be zero */
}
here we are simply overwriting the default margin.to make it lok a little better you may consider adiing some bottom padding.Please adjust the top margin(which I put here as 7em ),if required.Also,please do let me it helped or not.
thanks
Brajesh
hello There,seems there are some other issues,please wait a little for my next reply.
Well, it helps thanks, but not correctly… I’ve tried adjusting the bottom margin and that makes the background cover more of the screen depending on the value I enter, but its only for a certain size, it would be better if it just fitted the screen size. I tried setting it to 100% but that didn’t work (im no CSS expert). Do you know how to make it the size of the screen? Thanks for all the help.
Oh ok, sorry, missed the 2nd message.
Any update on this?
Great plugin. I also don’t like editing the wp files. It’s a pain when upgrading. I was wondering if you could add an option to add text to the login/register page. I have a private site where only people I know can join and I want them to use their real names as usernames and I’d like that printed on the page.
I think it would be cool for other reasons too. People could put reasons to join the site or perhaps even advertising.
I don’t know how easy it would be though. I am a beginner at php but I haven’t studied for a while but I will have a look at your code myself to see if I can figure out a solution.
@Rude Retro
Hi,Thanks for your comment.Well ,the things you mentioned is not difficult, and is achievable using a few basic filters/actions like “login_form”,”login_message”, I will be writing a post discussing very soon how to achieve that.
Thanks
Brajesh
Ok, i managed to figure it out myself, entering the following code will allow you to choose a background colour for the rest of the white block:
html {
background-color: #FFF; /* enter the colour here */
}
@Luke
Hi Luke,I am sorry ,but I had been disconnected from network for the few following days after leaving my last comment to you.So could not help you.I am happy ,you figured it out.all da best with your developments.
That’s great. I’m looking forward to it and I bet that it will make this plugin even more popular.
I have a version ready, but it is still in need of polishing.I will be updating on the site very soon.
What size is the .png suppose to be. My logo is only partially showing. I just need to down size, but not sure what size.
thanks
Penny
was it fixed brajesh? i really need it
Hello, its possible use this login widget to login on other location, for exemple:
in my server root a have wordpress: http://wwww.etcetctec.com/
And have phpbb in: http://wwww.etcetctec.com/phpbb/
I need use your login widget to login and redirect to phpbb
Its possible? please help
I have my wordpress set up so the index.php is in the root and the rest of the file is on a folder. This seems to cause your plugin to stop working. Could you please help how to solve this problem? Thanks you for your work!
Hi. I’m mid developing my website so I can’t give you a link yet. My issue is that I have a 1280×160 header image for my site that I’d like to show on all the login pages as well. … I can resize it (and even add “scroll” so I can see it all) but I can’t get it all the way to the left on the page. It won’t go any further left than the Username/Password “box”. I’ve been digging through the w3c CSS properties with no luck. What am I missing?
Here’s where it sits at the moment, after experiments failed:
#login h1 a{background:url(ftr-it-header-image-V2.jpg) no-repeat; width:1280px;height:160px;}
Thanks in advance.
Never mind. After piecing together examples from Craig (2/26/09) and Luke (3/14/09) I’ve basically got it. There is some fine tuning to do, the margin-top behaves differently in Firefox than IE7, and I couldn’t figure out what the #login {height: ###px} added so I remarked that out for now, but other than that, the following code works — see remarks:
/* have to put something here or the WP logo shows up, so make it disappear with 0×0px, … */
/* adding margin-top moves the form down below the new header image defined in the body section; */
/* however, the position margin-top sets on the page varies between Firefox and IE 7, though not fatally */
#login h1 a{background:url(ftr-it-header-image1-300×37.jpg) no-repeat; width:0px; height:0px; margin-left:0px;margin-top:145px}
/* initial code by Craig 2/26/09; modified for my site */
body.login
/* puts my header image – 1280×160 – across the top of the page starting at the upper left corner, replaces above image */
/* new: border-top-color changes the border color above the image to match the color below set by the html statement; set */
{background: url(‘ftr-it-header-image-V2.jpg’) no-repeat top left; border-top-color: #BDBDBD;}
/* new: set text and hover colors for border top above header image */
.login #backtoblog a { color: #000099; }
.login #backtoblog a:hover { color: #000099; text-decoration: underline; font-weight: bold; }
/* adds color to area of page below the header image — code solution by Luke 3/14/09 */
html {background-color:#BDBDBD;}
/* not sure what this code does, other than when unremarked, if set less than the height of the header image */
/* it cuts into the image, more didn’t seem to matter and leaving it remarked out has no apparent effect */
/* #login { height: 160px; } */
/* #nav = lost password link */
.login #nav a { color: #000099 !important; }
.login #nav a:hover { color: #000099 !important; text-decoration:underline; font-weight:bold;}
/* submit button: button color, border color, text color, font weight */
#login form .submit input {
background: #000099 none repeat scroll 0 0;
border-color: #F2F2F2 !important;
color: #F2F2F2 !important;
font-weight:bold;
}
/* form color */
#loginform {background: #BDBDBD;}
#loginform p { }
#loginform label { font-family: verdana,arial; font-size:1.0em; color: #000099}
/* register form, uses #nav and .submit settings */
#registerform { background: #BDBDBD; }
#registerform label { font-family: verdana,arial; font-size:1.0em; }
/* lost password, uses #nav and .submit settings */
#lostpasswordform { background: #BDBDBD; }
#lostpasswordform label { font-family: verdana,arial; font-size:1.0em; color: #000099}
#wp-submit { }
/* not sure what this does, haven’t researched it yet */
#forgetmenot { }
#nav { }
.message {
background-color: #BDBDBD !important;
color: #FF0000;
border-color: #FF0000 !important;
}
Okay. I got a tip from my theme site on how to test for the different browsers, see: http://neilkilbride.blogspot.com/2008/01/browser-css-differences-ie6-ie7-firefox.html.
Here’s the modified code and it works beautifully now (note that there is still the question of the value of having the #login {height: xxxpx;} setting. Enjoy!
**********************************************************
/* have to put something here or the WP logo shows up, so make it disappear with 0×0px, … */
/* adding margin-top moves the form down below the new header image defined in the body section; */
/* however, the position margin-top sets on the page varies between Firefox and IE 7, though not fatally */
#login h1 a{background:url(ftr-it-header-image1-300×37.jpg) no-repeat; width:0px; height:0px; margin-left:0px;margin-top:147px;.margin-top:70px;}
/* initial code by Craig 2/26/09; modified for my site */
body.login
/* puts my header image – 1280×160 – across the top of the page starting at the upper left corner, replaces above image */
/* border-top-color changes the border color above the image to match the color below set by the html statement set below */
{background: url(‘ftr-it-header-image-V2.jpg’) no-repeat top left; border-top-color: #BDBDBD;}
/* set text and hover colors for border top above image */
.login #backtoblog a { color: #000099; }
.login #backtoblog a:hover { color: #000099; text-decoration: underline; font-weight: bold; }
/* adds color to area of page below the image — code solution by Luke 3/14/09 */
html {background-color:#BDBDBD;}
/* not sure what this code does, other than when unremarked, if set less than the height of the header image */
/* it cuts into the image, more didn’t seem to matter and leaving it remarked out has no apparent effect */
/* #login { height: 160px; } */
/* #nav = lost password link */
.login #nav a { color: #000099 !important; }
.login #nav a:hover { color: #000099 !important; text-decoration:underline; font-weight:bold;}
/* submit button: button color, border color, text color, font weight */
#login form .submit input {
background: #000099 none repeat scroll 0 0;
border-color: #F2F2F2 !important;
color: #F2F2F2 !important;
font-weight:bold;
}
/* form color */
#loginform {background: #BDBDBD;}
#loginform p { }
#loginform label { font-family: verdana,arial; font-size:1.0em; color: #000099}
/* register form, uses #nav and .submit settings */
#registerform { background: #BDBDBD; }
#registerform label { font-family: verdana,arial; font-size:1.0em; }
/* lost password, uses #nav and .submit settings */
#lostpasswordform { background: #BDBDBD; }
#lostpasswordform label { font-family: verdana,arial; font-size:1.0em; color: #000099}
#wp-submit { }
#forgetmenot { }
#nav { }
.message {
background-color: #BDBDBD !important;
color: #FF0000;
border-color: #FF0000 !important;
}
P.S. I just noticed a couple of missing semi-colons after CSS color codes.
One final note: if you add a margin-top:Xpx; to the .submit section you can move the button down out of the way of the “A password will be e-mailed to you.” message.
/* submit button: button color, border color, text color, font weight, margin-top moves the button down */
#login form .submit input {
background: #000099 none repeat scroll 0 0;
border-color: #F2F2F2 !important;
color: #F2F2F2 !important;
font-weight:bold;
margin-top:5px;
}
This really is the last update for the night (well, morning). There was one last thing bugging me. The color of the “A password will be mailed to you.” message seen during registration. There is a way to change it.
Add the following anywhere you wish — I put it right below the /* form color */ section:
#reg_passmail {color: #000099;}
Hope this helps.
If y’all are interested in another example of customizing this neat plugin, check out this forum thread I posted at: http://forum.bytesforall.com/showthread.php?t=2152.
Based on hints and code from Craig and Luke on this forum, it is an example of totally “tweaking” the custom-style.css file to allow for full header images, color change, and so on … and it handles issues between FireFox and IE7.
Hope this helps.
hi Don.
Thanks so much for putting the suggestions.I hope you experience will be helpful for others.Most appreciated.
Great plugin-it worked wonders
Hi, I know this blog post is a little out of date, but I just started using the plugin today, and I am wondering if it’s possible to insert the stylesheet in the proper place, in the rather than before the DOCTYPE? This is with WordPress 2.8.
Thank you.
hi Chris
` tag not before the doc type.I am using it on this blog and you may wish to check the login page.Use firebug to check,where the css is added.Please check again.this works perfectly and ads css to `
Thanks
Brajesh
Hi, thanks for the useful info. But now I haven’t got even a theme installed ’cause I’m a new one to WP
so I will use your post a bit later. Hope you will help me in case of some troubles
Hey Carl,sure ,all the best with your venture.
Regards
Brajesh
I have used this plug in on other sites and love it. For some reason it is not working on my http://www.singleparenttravel.net site.
I followed the directions and uploaded the graphic (logo.png) via FTP. The log-in screen is now just blank. The cursor changes tot he pointer where the logo is supposed to be, but the logo just does not appear.
Any suggestions?
hi John,I am sorry, your comment went into spam.Today while cleaning the spams,I had a look at it and thought I must respond.
I checked your website and the logo is till not appearing at the login page.
I checked and the logo is not present in the right directory.
Please note, you must upload your logo to wp-content/plugins/wp-customized-login/ directory.
Please upload the logo to above mentioned directory and let me know ,if the problem still persists.
Thanks
Brajesh
It doesn’t appear that the logo is actually here:
http://www.singleparenttravel.net/wp-content/plugins/wp-customized-login/logo.png
That’s where the login page expects to see it, but it’s not there.
Hey Chris
thanks.You are right.That’s what I just mentioned above.
You made it more clear btw
regards
Brajesh
I have deleted the logo and re-uploaded it and it is in the directory. The image is long and rectangular (896 x 106)
I have the plug in on another blog (www.eyeonannapolis.net) and I just modified the logo and reuploaded that and it appears. However, that logo is also wide (608 X 103) and it is showing up but only partially.
I am still stumped on the singleparenttravel.net site., here is the destination directory (/www/wp-content/plugins/wp-customized-login) and in that directory is the file logo.png and I can see that logo fine.
Is there a way to change the sizes so the full logos will show?
Thakns so much!
Your logo is here:
http://www.singleparenttravel.net/wp-content/plugins/wp-customized-login/Logo.png
Linux is case-sensitive, so you will need to rename that to logo.png, lowercase, and things will be fine.
To make the full image appear, I think I would change the size of the #login div. You need to remove the CSS comment /* from the custom-login.css, then add this to the #login section:
`#login {
width: 608px;
}`
Then you need make the other two sections narrow and centered again. You will need to modify #loginform and #nav, with something like this:
width: 320px;
margin: 0 auto;
320px is the size of the WordPress included login form.
Don’t use the backticks in your custom-login.css. I was trying to format that as code here but it didn’t work. Just this:
#login {
width: 608px;
}
You’ll need to remove the opening and closing CSS comments for that change to have any effect. (Remove this /* from the beginning of the file [right after this line: *Uncomment it and edit all sections with your code formatting */], and this */ from the end.)
Thank you so much. That was it.
Great plugin. One question. I would like to have the logo point to my site, the developer, not the site I have developed. Is there a way I can do that?
hi Bob, you will need to modify the code a little bit.
change this function “tiw_site_url($url)” and return your sites link.It will be automatically be linked.
Thanks
Brajesh
i’m brand new to coding. question, where do you put all of this code to show your login page?
hi, you should just install the plugin and upload logo to your wp-content/plugins/wp-customized-login
Please check the readme.txt (replace the orginal logo with yours and it will appear automatically on your wp login page)
Thanks
Hi Brajesh,
Everything worked perfect when I edited the CSS for my logo. I have read all the posts and most of them have to do with logo issues. I can’t seem to get the “logo” to go to my site. If you click on it you are taken to some other place. Where do I edit that? I see the filters but I don’t know what needs to be edited to point to my site.
I LOVE your plugin and recommend it to my friends because it was so easy to use and smooth! Thanks!
hi Jodi
I Hope you are running wordpress not wordpress Mu.This plugin is for wordpress.
Still, If you find this problem.
Please check the plugin code(that’s only a few lines) and locate function “tiw_site_url”.
Edit the return code and return your sites link.It will work.
Thanks
Brajesh
thanks for sharing this plugin, i’ve been looking for this solution for my company site to make a branding login page. thanks:)