How to change size of title for mobile users

Solved

How to change size of title for mobile users

NikosBat
Trailblazer
449 1 94

Hello guys, how can I change the size of this title only for mobile users?

 

1.png

Accepted Solution (1)

Mustafa_Ali
Explorer
412 41 76

This is an accepted solution.

<style>
@media screen and (max-width: 767px) {
#shopify-section-template--24466088821068__main .product__title h1 {
    font-size: 2.6rem !important;
 }
}
</style>

Mustafa_Ali_0-1746439954193.png

Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->before the </body> ----->
before the body ----->
if this code work please do not forget to like and mark it solution

 

View solution in original post

Replies 7 (7)

Mustafa_Ali
Explorer
412 41 76

This is an accepted solution.

<style>
@media screen and (max-width: 767px) {
#shopify-section-template--24466088821068__main .product__title h1 {
    font-size: 2.6rem !important;
 }
}
</style>

Mustafa_Ali_0-1746439954193.png

Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->before the </body> ----->
before the body ----->
if this code work please do not forget to like and mark it solution

 

NikosBat
Trailblazer
449 1 94

Hello Mustafa_Ali thank you so much that had solved my problem!

Mustafa_Ali
Explorer
412 41 76

hey @NikosBat thank you for your response if you need more help feel free to share it

NikosBat
Trailblazer
449 1 94

Hex Mustafa_Ali, can I somehow apply this size for all my products? Now its only applied on the specific one

NikosBat
Trailblazer
449 1 94

Hex Mustafa_Ali, can I somehow apply this size for all my products? Now its only applied on the specific one

Mustafa_Ali
Explorer
412 41 76
<style>
@media screen and (max-width: 767px) {
.product__title h1 {
    font-size: 2.6rem !important;
 }
}
</style>

hey @NikosBat just removed the previous code that i give to you 
add a new code then you problem is solved 

NikosBat
Trailblazer
449 1 94

Hello Mustafa_Ali and thanks for replying, that code does nothing if I paste it above the body part.