Hello, I need help adding black text stroke to the image banner heading in Ride theme
Hi @BNMs ,
To add Black text stroke to the image banner heading in Ride theme, follow these steps:
-
Go to Edit code
-
Search to base.css or add componet-image-with-text.css
h2.image-with-text__heading {
color: black;
-webkit-text-fill-color: white;
-webkit-text-stroke: 3px black;
}
or
h2.image-with-text__heading {
color: #fff;
text-shadow:
3px 3px 2px #000,
-3px 3px 2px #000,
-3px -3px 0 #000,
3px -3px 0 #000;
}
or
h2.image-with-text__heading {
color: white;
-webkit-text-fill-color: black;
-webkit-text-stroke: 3px white;
}
Result:
**Hope it works @BNMs **
1 Like
Thank You!