Change style of Login Window in Script Users Register

Place for comments, problems, questions, or any issue related to the JavaScript / PHP scripts from this site.
maquis
Posts: 5

Change style of Login Window in Script Users Register

I read some posts on here that were very useful, but I would like to know how I can make the login window a little bigger.

I would also like to know if it is possible to bring it down to the middle of the page.

Thanks again,
Maquis

Admin Posts: 805
Hello
To modify the style of the login form, just edit the css properties of the #log_form, #loged (line 83), and #jslog (line 123) in style.css file.
For example:

Code: Select all

#log_form, #loged {
 position:absolute;
 top:38%;
 right:40%;
 margin:0 1px 0 auto;
 width:290px;
 border:2px ridge #a3a3fe;
 background-color:#c7c8fe;
 padding:3px;
 font-family:"Arial", sans-serif;
 font-size:12px;
 z-index:999;
 background-image: -ms-linear-gradient(top, #efeffe, #c8c9f9);
 background-image:-moz-linear-gradient(top, #efeffe, #c8c9f9);
 background: linear-gradient(top, #efeffe, #c8c9f9);
 border-radius:11px;
}
#log_form #jslog {
border-radius:11px;
margin: 0 auto;
display: block;
}

maquis Posts: 5
Thank you very much. Highly appreciated.

Similar Topics