How to reduce the size of the Heading on Mobile Version?

How to reduce the size of the Heading on Mobile Version?

LSAccounting
Trailblazer
205 1 31

So I have been changing a few codes to display a video instead of a slide on my Home Page. 

 

The mobile view is showing the Heading way too big as shown below. I have worked out in the Inspect option that I need a scale of heading 2rm for the mobile version but as soon as I add this code to the code editor - using the code below the Heading of the Desktop version changes too.

 

.h0 {
font-size: calc(var(--font-heading-scale) * 2rem);
}

 

Is there a way of changing the heading size for the mobile version only? 

 

I am also trying to make the boxes a bit smaller but haven't found the way to do that as of yet. 

 

This is where I am at at the moment. 

 

Mobile Version issue Umbrella d.png

 

https://lsaccountingfirm-umbrella.myshopify.com/

By L&S Team
Replies 2 (2)

DelightCart
Shopify Partner
1252 83 157

@LSAccounting Go to assets/section-image-banner.css and paste below css at bottom of file.

 

@media screen and (max-width: 749px)
.banner__heading.h0
{
font-size 22px !important;
}
Delight Cart - It's time to turn your visitors into loyal shoppers! 

Delight Loyalty - Increase repeat sales quickly and build lifelong customers loyalty.
LSAccounting
Trailblazer
205 1 31

@DelightCart 

 

Unfortunately, that did not make a difference. 

By L&S Team