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?
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
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
Thank you. That worked
Hi snitt,
Glad we got things working for you! :)
If you need further assistance please let us know.
Best regards,
Victoria