Visual issue with O...
 
Notifications
Clear all

[Solved] Visual issue with Osclasswizards theme login page

3 Posts
2 Users
1 Reactions
183 Views
(@stationary-traveller)
Posts: 10
Eminent Member
Topic starter
 

Hello,

Any ideas how i can fix this small visuall issue with Osclasswizards theme?

thanks

 
Posted : November 21, 2021 15:29
Topic Tags
Editor
(@editor)
Posts: 553
Honorable Member Admin
 

If you inspect (F12 console) the "remember me" tick, you will see:

.form-check-input {
    position: absolute;
    margin-top: .3rem;
    margin-left: -1.25rem;
}

I haven't tested that much, but go to themes custom css and add:

.form-check-input {
    position: relative !important;
    margin-top: 0px !important;
    margin-left: 0px !important;
}

Please test the above, this is a quick and dirty solution probably but seems to work.

 
Posted : November 21, 2021 15:39
(@stationary-traveller)
Posts: 10
Eminent Member
Topic starter
 

Dude you are great, works just fine. many many thanks

 
Posted : November 21, 2021 16:54