I’m trying to make my block quotes look more like this. How do I go about making that happen?
1 Answers
To resolve this issue, you can add the following code to the style.css file:
blockquote p {
background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
border-left: 3px solid rgb(221, 221, 221);
color: rgb(204, 204, 204);
font-size: 14px;
font-weight: normal;
padding: 10px 10px 10px 20px;
}
Hope this helps !
Please login or Register to submit your answer