Styling pull quotes/block quotes

How much customization is possible for pull quotes/block quotes.

I love the looks of these ones from teen vogue

But not sure how difficult this is - I"m a layperson, not a designer/coder :slight_smile:
Jeanette

Hi Jeanette,

Not much, you can add simply add a class to your blockquote element.

Then add a background to it using css.

Add this in Theme Options > CSS

.my-quote {
   background-image: url(quote.jpg);
   background-color:red;
   background-position:top left;
}

Change quote.jpg with the url of the quote image.

Here are some related links for further reading:

Intro to CSS - https://goo.gl/mFuWQT
How to get CSS selectors - https://goo.gl/BmoH39
Get Started With Viewing And Changing CSS - https://goo.gl/7xFhDa

Hope this helps

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.