• Resolved newuser33

    (@newuser33)


    I’ve been receiving feedback from some of my customers saying that the login or register page has been somewhat confusing for them. My question is, to highlight even more which area they’re typing their forms, is there any possible way to change the color of the text in login or register?

    So that instead of turning black when you select a different one it can turn orange?

    Thanks!

Viewing 13 replies - 1 through 13 (of 13 total)
  • Hello,

    Can you share your site link so that I can check the issue?

    Thread Starter newuser33

    (@newuser33)

    Sorry for the late reply, you can see what I mean from this image: https://image.ibb.co/n8wzqq/Login.png

    As you can see the ”login” and ”register” are black and slightly grey depending on which one you have selected.

    I want to see if it’s possible to change the color text of the one you’re selecting.

    Hello,

    Go to Customize > Woocommerce > Advanced Styling and find Account Section to style the form as per your need.

    Thread Starter newuser33

    (@newuser33)

    Is it possible so that the color is edited separately in each word?

    When I change the color they both change.

    I want to make it so that,

    when selected: orange

    when not selected: light black

    Try to add below code in the Customize > Custom CSS section

    a.owp-account-link.current {
        color: #f5a005fa !important;
    }
    .woocommerce .owp-account-links li .owp-account-link {
        color: #000000 !important;
    }
    Thread Starter newuser33

    (@newuser33)

    Thank you!

    However when I added it both turn black (light grey)

    Okay, if possible please share your site link so that I can give you the correct code?

    Thread Starter newuser33

    (@newuser33)

    Thanks!

    Here you go: https://bit.ly/2O91CED

    Delete the above code and try adding this one.

    .woocommerce .owp-account-links li .owp-account-link.current, .woocommerce .owp-account-links li .owp-account-link:hover {
       color: #000000 !important;
    }
    a.owp-account-link.current {
        color: #f5a005fa !important;
    }
    Thread Starter newuser33

    (@newuser33)

    Thank you so much!!!

    I want it the other way around, though, is it possible? (current orange, unselected black)

    Did you remove the old code I gave you?

    Find and remove the below code I gave you the first time.

    .woocommerce .owp-account-links li .owp-account-link {
        color: #000000 !important;
    }
    • This reply was modified 6 years, 4 months ago by Amit Singh.
    • This reply was modified 6 years, 4 months ago by Amit Singh.
    Thread Starter newuser33

    (@newuser33)

    I found the problem! I had to go in the advanced Woocommerce styling section (account) and change the color from there to the default one, after that the login or register color links appear exactly as I wanted them.

    I can’t thank you enough, you had so much patience with me! MAJOR PROPS!!!

    Glad to hear that you found a solution!

Viewing 13 replies - 1 through 13 (of 13 total)
  • The topic ‘Login or Register Color Change?’ is closed to new replies.