When I want to add a shadow to a text, how do I put the shadow to the actual text instead of its container?
Hi Lucas
You could always just add a css class and then add custom css in the global css…
Press Q the. Type css and add the global css then just add a class via html attributes on the text object (I.e. shadow-text)
Then just add this css to the global css area:
.shadow-text {
text-shadow: 2px 2px #ff0000;
}
Or you could target specific tags with
h1 {
text-shadow: 2px 2px #ff0000;
}
Hope that helps.
thank you
@glittering_vole Hey you can also do this by adding the Drop Shadow filter to the text object. This is something you can style directly within the Plasmic UI… just go down to filters and add a Drop Shadow filter. Season to taste and you are good to go. Sorry should have pointed you in that direction first but was away from computer.
no problem, thank you for helping me