Simple Guide to Styling Blockquotes Within Your Posts for Those with Limited Technical Skills

Part six of: “Stylizing Your Content”.
For this, there is only one file you will be working with:
style.css
You can find this in your WordPress admin under Presentation > Theme Editor - listed on the right hand side.
Open up your style.css file and look for the following:
blockquote {
padding-left: 10px;
border-left: 5px solid #ddd;
color: #666;
}
The red part is what you’re looking for, the middle is what we will change to suit our style (if you can’t find it, then create it).
Styling Blockquotes
Here’s a bunch you can either use as is, or tweak to fit your template:
Style #1
blockquote {
padding-left: 10px;
border-left: 5px solid #ddd;
color: #666;
}
Example:
“Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Curabitur mattis, orci vitae adipiscing venenatis, erat metus faucibus est, sed convallis nulla leo ac metus.”
Style #2
blockquote {
font-family: ‘Times New Roman’, Times, Serif;
padding: 10px;
color: #666;
font-style: italic;
border-top: 1px solid #ddd;
border-bottom: 1px solid #ddd;
}
Example:
“Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Curabitur mattis, orci vitae adipiscing venenatis, erat metus faucibus est, sed convallis nulla leo ac metus.”
Style #3
blockquote {
font-weight: bold;
font-style: italic;
color: red;
}
Example:
“Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Curabitur mattis, orci vitae adipiscing venenatis, erat metus faucibus est, sed convallis nulla leo ac metus.”
Style #4
blockquote {
border: 3px dotted #ddd;
padding: 10px;
font-style: italic;
color: #666;
}
Example:
“Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Curabitur mattis, orci vitae adipiscing venenatis, erat metus faucibus est, sed convallis nulla leo ac metus.”
Now, whenever you wrap something in a <blockquote> tag, it will display accordingly.
See you soon for part seven of “Stylizing Your Content”.
Christian from Smiley Cat Web Design has put together a great pullquote showcase. Go check it out.
Image credit: ximenatapia.















{ 8 comments… read them below or add one }
Jay, rock on buddy. I recently styled some block quotes with the help of a friend. I need more padding on mine though.
Next, can you show us how to do that call out for post series on the top of the posts
“Style Content Part 5″ it’s in green. I guess it’s just a background css style.
Thanks again,
lawton
lawton chiles’s last blog post..Links for 2008-03-08 [del.icio.us]
Sure thing Lawton. It’s coming in part 9. Which should be up late this coming week.
By the way, I’m diggin’ the new welcome video you added.
Thanks! I really appreciate tips like this. I don’t really know much about css myself but can follow instructions well. :o)
Carolyn B.’s last blog post..How Do YOU Use Entrecard?
Hey, it’s Bloggety-blog-blog, I remember dropping a card on you last night. ;o)
Thanks for stopping by Carolyn.
Jay, this is very helpful stuff. For html-illiterate people like me, this really helps us out in becoming successful bloggers.
Flimjo’s last blog post..Buffett-isms: The Wisdom of Warren Buffett
Very happy you’ve found it useful. :o)
I pulled together a pullquote showcase a while back which you may find useful for more examples.
You have to view source to see the code, but it’s pretty easy to decipher.
Added them. Thanks.
Leave a Comment