Hi,
I’d like to remove in the template.css the blockquote "before" command.
How can I do this in my childtheme? (I am a laywoman in programming.)
Thanks for helping.
template.css: 890
.item blockquote::before {
font-family: FontAwesome;
content: "";
font-size: 22px;
text-align: center;
line-height: 43px;
color: #FFF;
position: absolute;
right: 0px;
top: 0px;
}
1 Answers
To resolve this issue, you can add the following code in the style.css file of child theme.
.format-quote .item-content blockquote:before {
content: none;
}
Hope this helps !
It helped.
Thank you very much, Dominic.
Please login or Register to submit your answer