XF 2.0 About Change Width Pixels for Popup Login Form

Ulas K

Member
Hello everyone, I hope you are fine...

How may I change width pixels for popup login form on default style of XenForo v2.0.12?

Thank you for your all replies,
Good forums...
 
I don't think there's a way out of the box to target just the login form, you'd need to change all of the overlays as they don't appear to have a unique class on them (there is an id but I believe that changes depending on circumstances).

You can put this in extra.less to reduce all the widths:

Code:
.overlay-container .overlay {
    max-width: 400px;
}
 
I don't think there's a way out of the box to target just the login form, you'd need to change all of the overlays as they don't appear to have a unique class on them (there is an id but I believe that changes depending on circumstances).

You can put this in extra.less to reduce all the widths:

Code:
.overlay-container .overlay {
    max-width: 400px;
}
Thank you for your reply...
 
Top Bottom