Page 1 of 1

Change style of Login Window in Script Users Register

Posted: 22 Oct 2016, 19:50
by maquis
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

Change style of Login Window in Script Users Register

Posted: 23 Oct 2016, 05:59
by Admin
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;
}

Change style of Login Window in Script Users Register

Posted: 03 Nov 2016, 11:27
by maquis
Thank you very much. Highly appreciated.