Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #269494

    gignnn
    Participant

    Hello,

    First of all, thank you so much for the wonderful theme. I’m amazed by its beauty and flexibility!

    I apologize in advance if any of the questions I ask are extremely novice in nature, but I don’t have a coding or frontend design background at all.

    How would I go about changing the CSS for the “Log In” button on the WordPress login page to match that of my theme? I currently am using the Integrity stack and selected the 3D button design. Thanks for your help!

    #269509

    Darshana
    Moderator

    Hi there,

    Thanks for writing in! You can add your own CSS styles but you will have to edit the CSS file in the “wp-admin/css/wp-admin.css”.

    
    .login #wp-submit {
        background-color: transparent;
        border-width: 3px;
        color: #336699;
        width: 100px;
    }
    

    I would suggest you to use a plugin like Custom Login (https://wordpress.org/plugins/custom-login/) for this.

    Hope that helps.