Dani
asked 9 years ago

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
DominicStaff
answered 9 years ago

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 !

digefax
replied 9 years ago

It helped.
Thank you very much, Dominic.

Powered by DW Question & Answer Pro