Change Button Size On Screen Size

Is there code that will change the size of a button based on the size of the screen displaying it?

Hello @mrstreilein,

Thanks for writing in!

Please be informed that the button has different sizes which can be set in X > Theme Options > Buttons. The button size will always be the same in all screen sizes. If you want to modify it, you may need to add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

@media(max-width: 979px){
  .x-btn {
    padding: 4px;
  }
}

You can adjust the padding by increasing or reducing the padding.

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.