How can I increase the font size on my banner image for desktop view only?

Solved

How can I increase the font size on my banner image for desktop view only?

BonzaDogTreats
Shopify Partner
101 1 17

I'd like to increase the font size of the text on my banner image - both the headline and the caption - on desktop but not on mobile. 

Is anyone able to help me with how to code this please? 

I found this elsewhere and tried, but it didn't change anything.

.banner-section .content .title {
    font-size: 25px!important;
}

www.bonzadogtreats.com.au

Thanks for any help.

Accepted Solution (1)

oscprofessional
Shopify Partner
16205 2422 3146

This is an accepted solution.

Hello,
Add this css at the bottom of
Online Store->Theme->Edit code->Assets->timber.scss.liquid

@media only screen and (min-width: 768px){
#shopify-section-160860061017de4874 .banner-image .headline {
    font-size: 3em !important;
}
#shopify-section-160860061017de4874 .banner-image .caption {
    font-size: 1.5em !important;
}
}
Get pass your Store Core Web Vital Free Speed Optimization Audit, Chat on WhatsApp | Skype : oscprofessionals-87 | Email: pallavi@oscprofessionals.com | Hire us | Guaranteed Site Speed Optimization | Website Free Audit | Shopify Theme Customization | Build Shopify Private App | Shopify SEO | Digital Marketing | Oscp Upsell & Cross sell App : Free | Oscp Sales & Volume Discount App : Free | Custom Pricing Wholesale App : Free | OSCP Shipping Discounts App : Free

View solution in original post

Replies 3 (3)

oscprofessional
Shopify Partner
16205 2422 3146

This is an accepted solution.

Hello,
Add this css at the bottom of
Online Store->Theme->Edit code->Assets->timber.scss.liquid

@media only screen and (min-width: 768px){
#shopify-section-160860061017de4874 .banner-image .headline {
    font-size: 3em !important;
}
#shopify-section-160860061017de4874 .banner-image .caption {
    font-size: 1.5em !important;
}
}
Get pass your Store Core Web Vital Free Speed Optimization Audit, Chat on WhatsApp | Skype : oscprofessionals-87 | Email: pallavi@oscprofessionals.com | Hire us | Guaranteed Site Speed Optimization | Website Free Audit | Shopify Theme Customization | Build Shopify Private App | Shopify SEO | Digital Marketing | Oscp Upsell & Cross sell App : Free | Oscp Sales & Volume Discount App : Free | Custom Pricing Wholesale App : Free | OSCP Shipping Discounts App : Free
ZestardTech
Shopify Partner
5986 1076 1441

Hello There,

1. In your Shopify Admin go to online store > themes > actions > edit code
2. Find Asset > timber.scss.liquid and paste this at the bottom of the file:

@media only screen and (min-width: 768px) {
.banner-image .headline {
font-size: 30px!important;
}
.banner-image .caption {
font-size: 17px!important;
}
}
Want to modify or develop new app, Hire us.
If helpful then please Like and Accept Solution .
Email: support@zestard.com
Shopify Apps URL :- https://apps.shopify.com/partners/zestard-technologies
Custom Modifications Into Shopify Theme | Shopify Private App | SEO & Digital Marketing
BonzaDogTreats
Shopify Partner
101 1 17

Perfect, thank you so much.