• Resolved agoza

    (@agoza)


    Hi, do I need CSS to change the background / font color to suit my theme color? If that’s the case, may I know how that is done?

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Deepak Sharma

    (@sharmadpk03)

    Hi @agoza,

    Sorry for the delayed response. You can use these custom CSS code and copy them in your Additional CSS box. You can find the additional CSS box in your theme customization sidebar. On the WordPress dashboard, Click on Appearance > Customize > Additional CSS and then paste the following code:

    //To change the background
    #user-registration {
        background: none;
    }
    .ur-frontend-form {
         border: none;
    }
    //and here's custom CSS for label:
    .ur-frontend-form.ur-frontend-form--rounded form .ur-form-row .ur-form-grid label {
         color: #fff;
    }

    Let me know if that helps or not.

    Regards!

    Thread Starter agoza

    (@agoza)

    Thanks, the top one works! I ended up tweaking only the background color as I couldn’t tell the difference the other two did to my-account page (after login).

    I just need to find out how to change the navigation menu background color now. This didn’t work

    #user-registration .user-registration-MyAccount-navigation {
    background: none;
    }

    • This reply was modified 5 years ago by agoza.
    • This reply was modified 5 years ago by agoza.
    Deepak Sharma

    (@sharmadpk03)

    Hi @agoza,

    Please add the following CSS code and see if it works for you or not.

    This CSS will help to change the white block background on My Account page.

    #user-registration.vertical .user-registration-MyAccount-navigation {
        background: #243648;
    }

    here is the CSS to change the style for navigation menu;

    #user-registration.vertical .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link.is-active a {
        background: #18bc92;
        color: #fff;
        border-left: none;
    }

    Let me know the results and I will get back to you accordingly.

    Regards!

    Thread Starter agoza

    (@agoza)

    Wonderful. @sharmadpk03 It’s working exactly as I imagined now. Thanks and regards.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Change background color in User Profile / My Account’ is closed to new replies.