• Resolved bsatsangi

    (@bsatsangi)


    Hi

    I am using below code to change the woo category widget (in top bar) background color and its text color, this code was suggested by you guys (virtue theme guys).
    this code was working fine but its not working from the last couple of days, I just see a white background with black text, please advise.

    below is the code

    /* change background color for woo product category widget in the top bar */
    div#s2id_autogen1 {
    background: #577DA0;
    }
    /* change text color for woo product category widget in the top bar */
    #topbar span#select2-chosen-2 {
    color: #FFFFFF;
    }

Viewing 4 replies - 1 through 4 (of 4 total)
  • hannah

    (@hannahritner)

    Hey,
    Can you post a link to your site?
    Thanks!

    Hannah

    Thread Starter bsatsangi

    (@bsatsangi)

    223.190.0.142

    hannah

    (@hannahritner)

    Try using this css:

    #topbar .select2-container--default .select2-selection--single {
        background-color: #577DA0;
    }
    #topbar .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #fff;
    }
    #topbar .select2-container--default .select2-selection--single .select2-selection__arrow b {
        border-color: #fff transparent transparent transparent;
    }

    Does that work for you?

    Hannah

    Thread Starter bsatsangi

    (@bsatsangi)

    it worked well.

    Thanks Hannah. appreciate your help!!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘woo category widget in top bar’ is closed to new replies.