Okay
  Public Ticket #2324284
Button Size On Mobile
Closed

Comments

  •  2
    Riall started the conversation

    Hello, How can I reduce button size on mobile? Is there a setting where I can switch from Jumbo to Large instead of controlling size via CSS? I'm using this code but I'd rather change button sizes altogether: 

    @media only screen and (max-width: 480px) {
        a.nectar-button {
            width: 75% !important;
            height: 75% !important;
        }
    }

  •  3,022
    Andrew replied

    Hi Riall,

    No option setting to adjust that.

    Try adjusting the media width to 1000 like below:

    @media only screen and (max-width: 1000px) {
        a.nectar-button {
            width: 75% !important;
            height: 75% !important;
        }
    }

    Hope this helps.