Support Forums

The forums are closed and will be removed when we launch our new site.

Looking for support? You can access the support system via your account.

Forums Forums Search & Filter Pro Too large radio buttons on mobile devices

Viewing 10 posts - 1 through 10 (of 18 total)
  • Hille
    #239503

    The “Radio Buttons” of my filter are huge on the mobile versions. Can I adjust that to make them smaller by a percentage?

    Trevor Moderator
    #239517

    You could use custom CSS in a media query to do this. Are you able to send me a live link/URL to your search page so I can take a look?

    Hille
    #239547
    This reply has been marked as private.
    Trevor Moderator
    #239664
    This reply has been marked as private.
    Hille
    #239672
    This reply has been marked as private.
    Trevor Moderator
    #239692
    This reply has been marked as private.
    Hille
    #239700
    This reply has been marked as private.
    Trevor Moderator
    #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?

    Hille
    #239897

    Thanks for your answer. I used the snippet. Unfortunately, the checkboxes still look the same.

    In addition, I can currently see that on the small iPad they are square with rounded corners instead of circles.

    Trevor Moderator
    #239899

    It 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.

Viewing 10 posts - 1 through 10 (of 18 total)

The topic ‘Too large radio buttons on mobile devices’ is closed to new replies.