Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #866632

    Hello.

    I can´t seems to figure out how to control button padding and font-size inside button on smaller screens. Button background scales to much so that padding on right is cutting edge of text, and text is so small you can´t read it on smaller screen. How can I adjust button to be larger on smaller screens?

    #866764

    Hey snitt,

    Add the following to quick css:

    @media only screen and (max-width: 767px)  {
    h4.ls-layer{
    width: 136.375px;
    height: 26.1875px;
    font-size: 10px;
    line-height: 26.1875px;
    }}

    Best regards,
    Jordan Shannon

    #866768

    Hi,

    Apologies, use this iteration instead:

    @media only screen and (max-width: 767px)  {
    h4.ls-layer{
    width: 136.375px!important;
    height: 26.1875px!important;
    font-size: 10px!important;
    line-height: 26.1875px!important;
    }}

    Best regards,
    Jordan Shannon

    #867624

    Thank you. That worked

    #867682

    Hi snitt,

    Glad we got things working for you! :)

    If you need further assistance please let us know.

    Best regards,
    Victoria

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.