How can I underline and resize section titles in the Dawn theme?

hello

I am working with a dawn theme and would like to underline the title in all of my sections (not the description) and change the size of the title and desciption. I

fFor exemple underline Best seller, change the size

and change the size of under 20

Thank you for your help

Hi, @Mabelle !

Sure, I’d be happy to take a look at your Shopify store. Can you please provide me with the store URL?

If your store is password protected, please also provide the password so I can access it.

Thanks!

hello

https://daccache.myshopify.com/admin/themes/145822449953/editor

this is the link

thank you

Hello, I can’t access your store this way.

Click preview on themes section and send me that link

https://daccache.myshopify.com/

Hello, @Mabelle

To add the changes you want, add this code at the bottom of base.css file by clicking Edit code on the selected theme:

.collection__title {
text-decoration: underline;
font-size: 12px; /* Adjust this to your preferred size */
}

.collection__description {
font-size: 12px; /* Adjust this to your preferred size */
}

Let me know if you have any more questions!

hello,

Thank you for your answer, it worked but it is underlining both titles : Best seller and under20

I want to underline only best seller

Thank you mabelle

Hi again,

Please remove the last code i gave you and change it to this:

.collection__title h2 {
text-decoration: underline;
font-size: 12px; /* Adjust this to your preferred size */
}

.collection__description {
font-size: 12px; /* Adjust this to your preferred size */
}

If this works, please accept this as a solution, thanks!