Home › Forums › WordPress Themes – Premium › Circumference › Quote with a quote icon in Circumference › Reply To: Quote with a quote icon in Circumference
January 27, 2015 at 7:54 am
#20968
Participant
Hi Bill,
We don’t have that type of blockquotes in circumference theme. But if you want to use it Please follow the below steps:
1) Copy the following css into your child theme CSS files.
blockquote.quotes {
margin: 2em 0;
border-left: none;
padding-left: 5em;
font-size: 1.063em;
font-style: italic;
color: #434343;
}
blockquote.quotes:before {
display: block;
height: 0;
content: "“";
margin: 0 2rem 0 -3.5rem;
font: italic 800%/0.8 Georgia,"Times New Roman", serif;
color: #cdcdcd;
}
2) Now use the blockquote as below:
Your Content Here
Thanks.