I would like to make page titles smaller on mobile so that it fits on one line, how do I do this?
Example below for Dried Wedding Flowers however I would like it done on every page where it doesnt sit on o
Goal: Reduce mobile page title size so headings fit on one line.
Context: The store URL was shared (theflowerstudiobyroo.com). Images and code snippets were central to the guidance; some code blocks in the thread appear truncated/missing.
Proposed solutions:
Outcome: The OP reported success and expressed intent to mark a solution. The discussion appears resolved with CSS-based options for global and section-specific mobile title sizing.
I would like to make page titles smaller on mobile so that it fits on one line, how do I do this?
Example below for Dried Wedding Flowers however I would like it done on every page where it doesnt sit on o
Hey @umrraz90
Welcome to Shopify Community! Can you share your Store URL so I can have a look on it? Also, if you have password enabled then please share the password as well. Your cooperation would be greatly appreciated.
Best Regards,
Moeed
Hi @umrraz90
Would you mind to share your store URL? Thanks!
Hey @umrraz90
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Legend! it works for the page title, how would i do the same for the title lifes precious moments on the wedding page? ( I will mark as solution!)
Hey @umrraz90
Remove the previous code, and add this updated code with the same steps.
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hello @umrraz90
Go to online store ---------> themes --------------> actions ------> edit code------->base.css
and add this code at the end of the file.
.image-with-text__content > :first-child:is(.image-with-text__heading),
{
font-size: 21px !important;
}
and the result will be
If this was helpful, hit the like button and mark the job as completed.
Thanks
Thanks for the info, check this one.
@media only screen and (max-width: 749px){
h2.h1, .page-title, h1.h0 {
font-size: 25px;
}
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Thank you so much!