Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi,
I am trying to create an outline and/or shadow for my headline of my shop that I placed on top of a photo. I found solution for Brooklyn theme for example, but not for the Studio theme I use. https://www.kanal-100.com/
Can you please help?
Thank you
Solved! Go to the solution
This is an accepted solution.
Hi @Kanal100
Check this one.
#Banner-template--20190461690189__e7d52ccd-1079-4c12-9995-c90c17d023fe h2.banner__heading.inline-richtext.h0 {
text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
Hi @Kanal100 ,
Please add below code at the end of theme.liquid file just above "</body>".
<style>
#shopify-section-template--20190461690189__e7d52ccd-1079-4c12-9995-c90c17d023fe .banner__buttons a {
border: 2px solid #000;
}
#shopify-section-template--20190461690189__e7d52ccd-1079-4c12-9995-c90c17d023fe .banner__buttons a:before{
box-shadow: none;
}
</style>
Result:
This is an accepted solution.
Hi @Kanal100
Check this one.
#Banner-template--20190461690189__e7d52ccd-1079-4c12-9995-c90c17d023fe h2.banner__heading.inline-richtext.h0 {
text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
Nice!
Thank you for your fast answer and help. That did the job!