I'm attempting to style my Wordpress Blockquotes.
So far I have this:
Code:
blockquote {
padding-left: 10px; /* make room for the image on the left side */
padding-right: 20px;
background-color: #B6C386;
border: 0;
background-image:url('/wp-content/themes/atahualpa353/images/corner.png');
background-repeat:no-repeat;
background-position:right top;
}
I basically want the blockquotes to have a lightly colored background and a picture in the top right corner, however at the moment the text overlaps the picture. How do I get it to wrap around the picture?
Thanks