Friday 14 June 2013

How Ro Add Eye-Catching Blockquote With Hover Effects In Your Blog website

Today i am going to share Blockquote for blogger and website.  Created Simple Css Codes For a Blockquote. This Blockquote Highlighter Is quite Nice And Eye-Catching.

How to add CSS Style Sheet in Blogger Template:
  Go to Blogger
  select  Template
  EDIT HTML

And now Search For ]]></b:skin> With CTRL+F

  After you find ]]></b:skin> just above it paste the following coding

Live Demo

/*****************************************
TricksTeacher blockquote
******************************************/
.post blockquote
{
font-size: 15px;font-family: Verdana;font-weight: normal;font-style:italic;
background-color: #F2F1F1;
color: #000;
margin: 5px 10px;
padding: 20px 20px 20px 20px;
border: 2px dotted lightgrey;
border-radius: 10px;
box-shadow: -1px -1px 12px 2px gainsboro;
transition: background-color .777s;
-webkit-transition: background-color .777s;
-moz-transition: background-color .777s;
-o-transition: background-color .777s;
-ms-transition: background-color .777s;
}
.post blockquote:hover
{
background-color: darkgreen ;
color: #fff;
}
.post blockquote:active
{
background-color: CornflowerBlue ;
color: #000;
}


save your template and enjoy

No comments:

Post a Comment