Solved

Flex Theme: Increase product title font size

jaip
New Member
12 0 0

Hello,

How can I increase the product title font size on the Product page + Featured Product block?

Other posts solving this issue reference theme files that don't exist for me. I'm using the Flex theme (Out of The Sandbox).  URL is www.getjuv.com

I've tried the following code on the theme.liquid + styles.scss.liquid with no luck:

.product_name title {
font-size: 50px;
}

Appreciate all your help!

Jai

Accepted Solution (1)

devangfour
Shopify Partner
43 10 8

This is an accepted solution.

Hello @jaip 

Please add below CSS

.product-thumbnail__title.title a,.product_name.title {
    font-size: 50px;
}

 

Thanks

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on devangfour@gmail.com regarding any help

View solution in original post

Replies 2 (2)

devangfour
Shopify Partner
43 10 8

This is an accepted solution.

Hello @jaip 

Please add below CSS

.product-thumbnail__title.title a,.product_name.title {
    font-size: 50px;
}

 

Thanks

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on devangfour@gmail.com regarding any help
jaip
New Member
12 0 0
Amazing, thank you!!