Jump to content

Why don't the login changes apply?


Il Domandatore

Recommended Posts

I've made CSS changes to the login text and text fields, but the changes don't stay.

 

/* It removes the border and outline in the login text field. */
input#user_login:focus-visible {
    outline: none !important;
    border: none !important;
}

/* It removes the border and outline in the login text field. */
input#user_pass:focus-visible {
    outline: none !important;
    border: none !important;
}

/* It removes the border in the login text field. */
input#user_pass {
    border: none !important;
}

/*It adds the hover outline in the login text field. */
input#user_pass:hover {
    outline: 3px solid black !important;
}

/*It adds the hover outline in the login text field. */
input#user_login:hover {
    outline: 3px solid black !important;
}

/* It removes the underline on login on the menu. */
.site-header-above-section-right-center.site-header-section.ast-flex.ast-grid-right-center-section a:link {
    text-decoration: none !important;
}

Login

Results unchanged.

 

Link to comment
Share on other sites

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...