Hi Team. Can I add a light grey shadow at the back of the text via CSS?
Store: Glowcare.se
PS: Glowcare1991
A user seeks to add a light grey shadow effect to text on their Shopify store (Glowcare.se) using CSS.
Solution Provided:
base.css, style.css, or theme.css in the Assets folder)#div__79716196220991--template--textWithImage h1 {
text-shadow: 2px 5px 6px grey;
}
The response includes a visual example showing the shadow effect applied to text. The CSS targets a specific element ID and applies a text-shadow property with defined offset and color values. The discussion appears resolved with a working code snippet provided.
Hi Team. Can I add a light grey shadow at the back of the text via CSS?
Store: Glowcare.se
PS: Glowcare1991
Hi @GeeKyuu24
Do you mean like this?
If it is, try this one.
div#ImageWithText--template--19902269161797__9750e28c-1010-4f9a-bc28-dc87c4c3b862 h1 {
text-shadow: 2px 5px 6px grey;
}