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, I can’t access your store this way.
Click preview on themes section and send me that link
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!