Forums › Forums › Search & Filter Pro › Too large radio buttons on mobile devices
- This topic has 17 replies, 2 voices, and was last updated 4 years, 6 months ago by Trevor.
-
Trevor(Private) April 10, 2020 at 12:50 pm #239702
You have this in your customizer Custom CSS:
#regionfilter li { font-size: 18px; display: inline; padding-right: 30px; }
Change this to:
@media only screen and (max-width: 1019px) { #regionfilter li { font-size: 15px; } } @media only screen and (min-width: 1020px) { #regionfilter li { font-size: 18px; } } #regionfilter li { display: inline; padding-right: 30px; }
I hope that makes sense?
Trevor(Private) April 14, 2020 at 8:16 am #239899It is the actual buttons you need to change the size of? They are drawn by the device/browser.
The iPad draws basic form elements very differently by default. You may need to search generally for how to change the sizing and appearance. It may well be your theme that is adding the sizing somehow.
-
AuthorPosts