Gravity Forms Plug In not working

Hello Guys

I have a gravity forms appearance editor plug in and the options are not working on it for the dropdown menus. Some of the selections are correct with a black backgroud but the dropdown menus remain grey. Is some CSS I can use to fix the problem? Thanks in advance.

Best,

Nate

Hello Nate,

Thanks for asking. :slight_smile:

You can add following CSS under X > Theme Options > CSS:

select option {
    color: #fff !important;
    background-color: #fff !important;
}

Thanks.

Hi Prasant

Unfortunately that didnt work. It happens on mobile too. Any other suggestions!

Best,

Nate

Hi Nate,

Please try this instead:

.gform_wrapper select option {
    color: #282828 !important;
    background-color: #fff !important;
}

Hope this helps.

Hi Jade

No unfortunately this didnt work either. Are you experiencing the dropdown menus being grey? Any other ideas?

Best,

Nate

Hello Nate,

The code should work or at least affect any of those fields. Upon inspection of the page, I could not see the code either. It turns outs that you have installed Cache Enabler. Please clear your plugin cache first before testing the site so that the code will be present on the page and will take effect.

Please let us know how it goes.

I cleared it and the code is there. You can still see the dropdown menus are grey.

Hello There,

I have checked the page in Chrome and this is how it is displayed.

Please keep in mind that iOS has its own way of rendering the dropdown or select element. And it always results to a different look and feel of the element.

You might want to check out this related links:



This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.