Customize blockquote using CSS and graphics in WordPress


Blockquote should reflect the personality of the blog site writer. It looks nice when it is customized to reflect the brand of your blog or simply to add an effect of quotation mark. We will discuss, how you can your blockquote in (can be done in Blogger too as it also uses the CSS to define the blockquote).

 

This is our block quote.

This has been branded with our website’s logo.

The only Graphical part is the logo, the rest is done by defining its property via CSS.

 

You must understand the anatomy of how we did it. Otherwise, you can not create your own style, it will be just a ditto copy of our style. Kindly try to stand the diagram of below, we have explained it so that it become clear to you:

 

custom blockquote

 

You need to open the style.css file of your theme and find out where is the CSS code for blockquote is. Then modify it as you like. Here goes the required CSS code for your blockquote with matched color with the above diagram:

#content blockquote {
margin: 5px 10px 5px 10px;
Padding: 10px 60px 10px 10px;

border-width: 5px;
border-style: solid;
border-color:#eeeeee;

-color:#e3e3e3;

background-image: url(images/blockquote.png);
background-repeat: no-repeat;
background-position: top right;

font-family: Georgia;
font-size: 14px;
font-weight: normal;
color: #000000;
text-shadow:#fff 0px 1px 1px;
overflow: hidden;
}

 


Background image is our logo. You can use quotation mark too. If you do not need any particular effect, just do not write it. For example, if you do not need border, just omit it (or use the same color as background, this is recommended). The logo or quotation mark should not be more than 50×50 pixels. Here are some typical quotation marks ( to save them) :

 

quotation marksquotation-marksquotation-marksquotation-marks-new

Note: Do not forget to rename them! The name in CSS must match! Put it in your Theme’s image folder (via FTP) in order to be working. You can use full url if you need to put the image elsewhere (with http).

 

Signature


Incoming search terms:

quotation marks,QUOTATION MARK,quote marks,speech marks,tırnak işareti,speech mark,quote mark,blockquote css,quotation marks png,t?rnak i?areti,nice quotation marks,talking marks,speech marks clipart,add quotation marks to blockquote wordpress,how to open quote wordpress blockquote,gray quotation marks,custom blockquote,blockquote css in wordpress,wordpress blockquote images
0saves
If you enjoyed this post, please consider leaving a comment or subscribing to the RSS feed to have future articles delivered to your feed reader.
About Abhishek

Abhishek Ghosh is an Orthopedic Surgeon, Inventor with 216 Patents, Current editor of The Customize Windows Media Group. You can follow and know more about Dr. +Abhishek Ghosh on Google Plus and follow on Twitter as @AbhishekCTRL.

Comments

  1. Thanks – what file size is the logo?

Trackbacks

  1. [...] } The declaration or value marked with red color, needs to be changed by you. Just like the tricks we mentioned while customizing blockquote, you can add background image and several other tricks too. Random Posts:The History of [...]

  2. [...] Some readers has asked the solution how to customize the appearance of author box in WordPress. One of them has tried the method we wrote to customize blockquote in WordPress. [...]

  3. [...] tricks on how to create hover buttons, how to use text shadows to get pressed text effect, how to create custom blockquotes , how to customize Feedburner RSS newsletter subscription too. You will get lots of CSS tricks in [...]

Speak Your Mind

*