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
I want to add shadow to slideshow heading and subheading text.
I tried lots of codes but it doesnt seem to work.
Solved! Go to the solution
This is an accepted solution.
Hi @liustraa
Do you mean text shadow?
If it is, check this one.
From your Shopify admin dashboard, click on "Online Store" and then "Themes".
Find the theme that you want to edit and click on "Actions" and then "Edit code".
In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
h2.banner__heading.inline-richtext.h1, .banner__text.rte {
text-shadow: 5px 3px 5px rgba(0, 0, 0, 0.5);
}
And Save.
Result:
if this wont work please, share your store URL. Thanks!
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
This is an accepted solution.
Hi @liustraa
Do you mean text shadow?
If it is, check this one.
From your Shopify admin dashboard, click on "Online Store" and then "Themes".
Find the theme that you want to edit and click on "Actions" and then "Edit code".
In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
h2.banner__heading.inline-richtext.h1, .banner__text.rte {
text-shadow: 5px 3px 5px rgba(0, 0, 0, 0.5);
}
And Save.
Result:
if this wont work please, share your store URL. Thanks!
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
it worked thank you, maybe you have a code that would make shadow for slideshow button "text" not the button itself too?
Check this one, same Instruction.
.button, .button-label {
text-shadow: 5px 4px 4px rgba(0, 0, 0, 1);
}
And Save.
Im not sure if this will work cause im only using the demo theme.
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
it worked, thank you!!