Editing text
-
How do you remove the shadow behind text? And the italicization? I am using the Pique theme
The blog I need help with is: (visible only to logged in users)
-
Hi there, are you talking about the text shadow, or the shadow on the image itself?
For the italics, add the following.
#pique-hero .pique-panel-content .entry-content p:first-of-type { font-style: normal !important; }If you are talking about the small text shadow on the text itself, this will remove that.
.pique-panel-content { text-shadow: none !important; }If you are talking about the overlay on the image, then the following will do that.
.pique-panel-background::before { background: rgba(0, 0, 0, 0) !important; } .pique-panel-background { opacity: 1 !important; }
- The topic ‘Editing text’ is closed to new replies.