• Resolved gamersden

    (@gamersden)


    Hi,

    Can someone point me in the right direction with changing text colour of my drop down box I have on my signup page.

    https://gamersden.com.au/membership/sign/

    this is the page and the drop down menu in question if found here.

    Any help would be appreciated. I just want it to be black text for Options found in box.

    Thank you in advance.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Robin W

    (@robin-w)

    Do you mean the menu drop down box when you hover on members area menu option?

    ie you want

    sign up
    account
    member forum

    to be in black

    or do you mean elsewhere?

    Thread Starter gamersden

    (@gamersden)

    If you hover over members area and click sign up, on that page there is a drop down box (system of choice) which is during the sign up process. I want to change the text colour on that drop down box and the options associated with that box.

    I think black text would look a bit better than grey text.

    Robin W

    (@robin-w)

    ok, the code being used is in

    wp-content/plugins/wp-members/css/wp-members-2012.css

    line 182

    the existing code is

    #wpmem_reg .dropdown {
        -moz-font-feature-settings: inherit;
        -moz-font-language-override: inherit;
        border-color: #CCCCCC;
        border-radius: 3px;
        color: inherit;
        font-family: inherit;
        font-size: inherit;
        font-size-adjust: inherit;
        font-stretch: inherit;
        font-style: inherit;
        font-variant: inherit;
        font-weight: inherit;
        height: 50px;
        line-height: 1.625;
        padding: 10px;
        width: 100%;
    }

    You can either amend color in there to #000000
    ie change
    color: inherit;
    to
    color: #000000;

    This may be overwritten by any updates to the wp-members plugin, so keep a note of it.

    or better put a line in your child theme if you have one, which would be

    #wpmem_reg .dropdown {
        color: #000000 !important;
        }
    Thread Starter gamersden

    (@gamersden)

    Thank you very much Robin.

    Very much appreciate this!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘WP-Members Plugin help’ is closed to new replies.