I am trying to: Create custom search drop downs.
Link to a page where the issue can be seen: hidden link
I expected to see: Normal down or up/down arrows at the far right end of dropdowns in all browsers.
Instead, I got: Nothing. This happens in Firefox 63.0.1 on my desktop and 63.0.2 on my Galaxy S7 cell phone. Arrows show fine in MS Edge and Chrome.
NOTE: I do not believe Enfold loads Bootstrap; I believe they use their own responsive grid css. I have loaded Bootstrap CSS for the grid columns only to support Bootstrap output for Toolset. However since the other browsers show the arrows ok, I don't think this is it.
NOTE 2: This is on my development machine, not a live, public server.
Any ideas?
Hi,
First, there isn't such a built-in feature to display up/down arrows in dropdowns within Views plugin.
I have checked the URL you mentioned above, it is using some custom CSS codes to style the dropdowns, see your theme file:
hidden link
line 358:
#top select, #top .avia_ajax_form .select, #top .entry-content-wrapper select{
-webkit-appearance: none;
border-radius:0px;
background-image: url(data:image/png; .... );
background-position: center right;
background-repeat: no-repeat;
border-radius: 2px;
}
It seems that above CSS codes isn't compatible with Firefox 63.0.1 or Galaxy S7 cell phone.
In your case, you can try these:
1) Contact your theme author to fix the problem for all browsers.
2) Use custom CSS codes to override it, display without up/down arrows, for example:
select[id*='wpv_control_select_']{
background-image: none !important;
}
See screenshot, select-background-image.JPG
Hi Luo:
Thanks for the tip. Actually the css code at line 358 was being overridden by code further down at line 37 where there already was a background-image: none. I got it taken care of though, thank you!
Scott
My issue is resolved now. Thank you!