How can I increase side margins for one-line titles on mobile view?

Hello,

I want to increase the margins on the sides to have my titles on one line without reducing font size (on MOBILE VIEW)

Here is my url : Waterlys

Thanks

On which device are you testing?

On samsung galaxy device

Please Go to Online Store β†’ Themes β†’ Edit code β†’ Assets β†’ theme.scss.liquid and paste this code at the end of this file.

@media screen and (max-width: 450px) {
h2.section-header__title {
    font-size: 24px !important; 
}
}
1 Like

@Medy06 , do this to fix it in 20 seconds:

  1. In your Shopify Admin go to: online store > themes > actions > edit code
  2. Find Asset > theme.scss.liquid or theme.css and paste this at the bottom of the file:
@media (max-width: 410px){
    .section-header__title{
        font-size: 6.7vw !important;
    }
}

Please let me know whether it works.

Kind regards,
Diego

Hi Diego

Actually I tried but nothing changed, don’t worry I finally changed the font size

Medy

1 Like