hi
I have some png images of quotation marks to be used for blockquotes, but when I set a background image and position, I am unable to adjust the position of the quotation mark using padding.
Any suggestions?
Here is what I currently have in CSS
blockquote {
margin:0;
background-image:url(http://feastthailand.com/wp-content/uploads/2017/07/openQuote13.png);
background-repeat:no-repeat;
background-position:left top;
}
blockquote p {
margin:0;
padding:10px 10px 10px 10px;
font-family:"Comic Sans MS", cursive;
font-size:24px;
color:#666;
text-shadow:2px 2px 2px #fff;
}
When I add padding to the blockquote section, it affects the border and text but not the background image. I only want to adjust the position of the background image.
Any suggestions
Regards