Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author sevenspark

    (@sevenspark)

    Hi tee_na,

    Glad you’re enjoying the plugin ??

    I’m a little confused what you mean about “Making the drop down pink”. The dropdown is a standard HTML select UI element – so generally these aren’t styled at all outside of the browser’s default styling. For example, on Chrome it looks exactly like a normal select box.

    screenshot

    Are you encountering something in a specific browser? Some browsers allow styling of select elements more than others, so if there is styling of those elements from your theme or another plugin, those may be applied to the RSM as well. This plugin does not add any of its own styles to the dropdown.

    Hope that helps ??

    Chris

    Thread Starter tee_na

    (@tee_na)

    It happens on my iphone

    View post on imgur.com

    See how the dropdown box is pink, and the word inside is orange? It’s very hard to read. Only the link color is orange, so I’m guessing it’s taking it from that?

    Plugin Author sevenspark

    (@sevenspark)

    Yeah, this plugin doesn’t add any styles like that, but it is inheriting the color from your theme’s style.css

    input, select, textarea {
            font-family: 'Roboto Condensed', sans-serif;
    	color: #fd986e;
            text-align: center;
            width:auto;
    }

    You could override it with

    select.responsiveMenuSelect{
      color:#000;
    }

    The pink you’re seeing is simply that the UI element is partially transparent, and the pink background you have is showing through.

    Hope that helps,

    Chris

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Dropdown box color’ is closed to new replies.