Topic-icon sclogin popup

Active Subscriptions:

None
6 years 3 months ago - 6 years 3 months ago #63285 by bsnlin
sclogin popup was created by bsnlin
Template free RSVARIO
When I open the popup login in the first click is not centralize, How can I resolve it?
see file attached
Thank you
File Attachment:
Last edit: 6 years 3 months ago by bsnlin.
The topic has been locked.
Active Subscriptions:

None
6 years 3 months ago #63290 by prin0096
Replied by prin0096 on topic sclogin popup
Please add the following in your css file (custom.css).

div#login-modal.sourcecoast { margin-left: 0px !important; }

Cheers,
Rob
The topic has been locked.
Support Specialist
6 years 3 months ago #63303 by mel
Replied by mel on topic sclogin popup
There's a style in your template that is causing this:
div.modal {
transform: translateX(-50%);
}

Our style for computing the margin left is taking the size of the modal, computing half of that and shifting it over by half so the box is centered on the page. The transform style that you have then repositions along the horizontal access by another 50%.

My suggestion is to temporarily add the following to your CSS file. I'll be checking in something similar to our CSS:
div#login-modal.modal {
transform: none;
}

-Melissa
The topic has been locked.