Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Ross Morsali

    (@designsandcode)

    Hey there

    If you are giving your button a width of 800px via CSS then of course it will be 800px on mobile too!

    In order to for the width to be different on mobile, you need to use CSS that targets mobiles specifically – these are called media queries –

    http://www.w3schools.com/cssref/css3_pr_mediaquery.asp

    So you would define a different width for mobile, or possibly width: auto

    Thanks

    Thread Starter wpodeskstar

    (@wpodeskstar)

    Thank you for the tip – I used the following code and it works just as I wanted.

    @media screen and (min-width: 480px) {
    .fasc-size-xlarge {
    width: auto;
    }

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Mobile button getting cut off’ is closed to new replies.