Jump to content

Fix Backoffice "Stay logged in" checkbox and "Forgot password" link not clickable


KLewi

Recommended Posts

In the newest browsers, the Backoffice "Stay logged in" checkbox and "Forgot password" link not clickable. A quick fix for the issue:
 

Edit the file :

your_admin_folder/themes/default/template/controllers/login/content.tpl

and add the

style="position: relative;"

to the formgroup in line 77

<div class="form-group" style="position: relative;"> <div id="remind-me" class="checkbox pull-left"> ...

  • Like 2
Link to comment
Share on other sites

In 1.7.7 :

/admin/themes/default/css/overrides.css

/* This stylesheet should be used to add your custom styles to the back-office without using the Sass sources. It will be loaded after all the default styles. 
You should NOT edit any other exisiting back-office CSS file manually: they are generated by the Sass preprocessor: http://www.sass-lang.com/ . */
#login #remind-me,
#login .show-forgot-password {
    position: relative;
}

 

  • Like 1
Link to comment
Share on other sites

  • 3 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...