Hi everyone,
I’m looking to make the collection title smaller in the product preview section on my Shopify store. Is there a specific setting for this, or would I need to add some custom CSS?
Here’s my store preview link: https://www.rappid.run/collections/frontpage
Password: Password
Thanks in advance for your help!
Best,
Kim
Hi @KimGottwald
To complete your requests, please follow these steps:
- Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
- Paste the code provided into the Custom CSS section.
main#MainContent:has(product-info) div.collection .collection__title .title {
font-size: 18px !important;
}
Here is the result: https://prnt.sc/-N5iD4JRY0f5
I hope this helps
Best
Daisy
Hi @KimGottwald
You can do that by adding this code below into Custom CSS in Online Store > Themes > Customize > Theme settings
html .collection__title.title-wrapper,
html .collection__title--desktop-slider .title { font-size: 22px !important; }
Hi @KimGottwald ,
- Go to Online Store → Theme → Edit code.
- Open your theme.liquid file
- In theme.liquid, paste the below code before
If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEE
Thanks!
Thank you! Is it also possible to only change the font size on mobile?