• I have a important question about my site. How can fix it to display buttons on mobile devices smaller than on desktop computers? Currently the buttons were splitted to 3 lines on mobile phones. I couldnt find a solution yet, so maybe someone have a good advice for me to solve that problem. Foran example this is a site what i talking about: https://www.geld-abheben-im-ausland.de/geld-abheben-in-kanada

    As you can see there is the green button. That problem causes really bad headache to me. Im very thankful for help to solve this.

Viewing 1 replies (of 1 total)
  • You will have to use CSS to do a Media query and resize the button based on the device. Below is just an example to get you started.

    @media screen and (max-width:480px){
      .button {
        padding:8px;
        font-size:11px;
      }
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Resize Buttons on mobile devices’ is closed to new replies.