Hey all,
I’m wanting to add a decorative line under my collection titles in the same colour as the collection heading.
Any chance anyone knows how I can do this with code please?
Example pictured below, heading is Finders and Makers.
Thanks!
Hey all,
I’m wanting to add a decorative line under my collection titles in the same colour as the collection heading.
Any chance anyone knows how I can do this with code please?
Example pictured below, heading is Finders and Makers.
Thanks!
Hello,
Please share your site url.
So that i can check and let you know the exact solution here.
Hello sir
Please share your link so I will sent you a solution
Hello @media_by_bec
Add this css at the bottom of
Online Store->Theme->Edit code->Assets->theme.scss.liquid
#shopify-section-collection-template h1 {
text-decoration: underline;
}
Hope this will work for you
Thanks…
Thanks for update.
#shopify-section-collection-template h1, #shopify-section-collection-template .h1, #shopify-section-collection-template #shopify-product-reviews .spr-header-title, #shopify-product-reviews #shopify-section-collection-template .spr-header-title {
text-decoration: none;
padding-bottom: 10px; /*if you need more spacing chang the value*/
border-bottom: 2px solid; /*if you need more thin chang the value*/
display: inline-block;
}
Awesome thanks @KetanKumar !
However the h1 is now not center…tried to add centre code and cant work it out sorry?
oh, sorry 1 code are missing please add below code
.section-header {
text-align: center;
}
@KetanKumar that worked, however its moving all my section headers, these (pictured below) section headingson my homepage I want alined left, they are h2’s if that helps with code? Sorry, but thanks!!!
I’ve deleted all previous/above codes
Yes, sure,
add below code
.collection-template-section {
.section-header {
text-align: center;
h1 {
{
text-decoration: none;
padding-bottom: 10px; /*if you need more spacing chang the value*/
border-bottom: 2px solid; /*if you need more thin chang the value*/
display: inline-block;
}
}
}
}
Hello all.
I have the same issue but with Dawn theme. I need to add an underline under my title page for my products. Please help me if possible. Thanks!