Showing posts with label Blockquote Trick. Show all posts
Showing posts with label Blockquote Trick. Show all posts

21 Feb 2013

Amazing Examples To Customize Blockquote Style In Blogger/Blogspot

Add awesome designs, backgrounds and CSS3 effects for displaying HTML, CSS and other codes in blogger posts using CSS and CSS3. Just follow these steps:

Step 1. Go to design > Edit HTML > check the "Expand widget templates" box

Step 2. Search for this piece of code:


</head>

Step 3. Just above it, paste the following code:

<link href='http://helplogger.googlecode.com/svn/trunk/css/blockquotes/styles.css' rel='stylesheet' type='text/css'/>

Step 4. Save the Template

Now everytime you create a post, switch to Edit HTML tab, choose the syle you like and add the red codes below to the beginning and end of the text you want to quote. See the screenshot below:


Here are the available designs:

Example 1:
 
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum.


Example 2:
 
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum.


Example 3:
 
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum.

Example 4:
 
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum.


Example 5:
 
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum.


Example 6:
 
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum.

23 Sept 2012

PURE CSS TEXT BOX


Pure Css Textbox
©Lord Html

Description-As you see above a pure Css text box example this css text box is made by me Aumkar Thakur.This text box is having hover effect which make this software good looking the main advantage of this text box is that it change it color from black to CornflowerBlue when you will mouse over it.And if you click on text box it changes it color to dark green.The border of the text box having  stitched effect and also having box shadow behind box.



Find out how to make Pure Css Text box-
Its all the about Css & Html.If you know basic of Css & Html the you can make this text box.You don't need to make code as I will provide you.You only need to copy and paste.



HTML 


<div class="postmsgg23" style="font-family: &quot;Courier New&quot;,Courier,monospace;">Yout Text Here</div>

Css



.postmsgg23
{
color: white;
background-color: black;
width: 500px;
margin: 5px 60px;
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;
}

.postmsgg23:hover
{
background-color: CornflowerBlue ;

}
.postmsgg23:active
{
background-color: darkgreen ;
}


Paste The Html Section where you want to put Css text box in your Website and Paste the Css section in your website Css.

If you are using Blogger following steps-

  • Paste The Html Section where you want to put Css text box in your blog.
  • Now go to Blogger dashboard.
  • Now open template designer.
  • Now click on Advanced button.
  • Now you will find Add Css button click on that link.
  • Now Paste The Css section code there..
  • Now Save The Template.

14 Sept 2012

14 Amazing Examples To Customize Blockquote Style In Blogger!

Blockquotes with different styles

Blockquote With a Fancy Border and Owl Image

 

 

 

 


Blockquote Code:

 

.post blockquote {
    background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiIeMnSHl2i28SsBnw5sX_v-f_gX3Ipw85NUXjpufiqb_Ao3G5WVCTbd4K5t2Oeqccqo8WM4yj6feuF7EdBI4b9WrNoy6zvY18vsK3H2hshNRJEUSBI5Ya1A0wJUovBOh1sIFTVf2CbKrU/s1600/quote1.jpg") repeat-y scroll left top #F2F1F1;
    border-color: #DDDDDD #666666 #666666 #DDDDDD;
    border-radius: 3px 3px 3px 3px;
    border-style: solid;
    border-width: 1px;
    color: #000000;
    font: 0.9em "Consolas","Courier New",Courier,mono,serif;
    margin: 0 20px;
    padding: 20px 20px 20px 50px;
    transition: all 0.3s ease-in-out 0s;
word-wrap:break-word;
}
.post blockquote p {
    margin: 0;
    padding: 0 0 15px;
}
.post blockquote:hover {
    background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhiu88o-tDjBiuzyL6VeFMoyAncNiId5tDOlNXRQl_2HZAA0DMgrSkD4SJi8guJ-GMMFTGsr70I91SYEMUq7VJAvHz_m3AzuETzk9RHR5SivjYJ7F1bej1pF80hIkqUbWVYqEcvTeBpzzA/s320/quote2.jpg") repeat-y scroll left top #F2F1F1;
border-radius: 15px 15px 15px 15px;
    box-shadow: -1px -1px 12px 2px gainsboro;
    color: #000000;

}
owl
 Blockquote Code:
blockquote {
margin : 0 20px;
padding: 60px 30px 40px 20px;
background : #F1F8FE url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiqc0b3PAeaYbhayGSUUPFhhMBQb_J2tQgJL1EnofJ34EDSyhowQoaCJo6yDLsJqek1YW4fI0Ox_QLvFi7td0hBDwgJH-DLJR_ViKTkZlK_RS4lTIujucyjjGxQhn79aNtt7BwIq9YvU4w/s400/owl.png) no-repeat 350px 5px;
font: normal .9em "comic sans ms", Courier,"Times New Roman", Times, serif;
color : #000;
border-left: 8px dotted #DAB547;
}
blockquote p {
margin: 0;
padding-top:10px;
}

Blockquote With a Purple Corner Label and Border At Bottom

Purple-Scanned-Copy
Blockquote Code:
.post blockquote {
margin : 0 20px;
padding: 70px 20px 20px 40px;
background : #E4EAFE url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi8CacnOmNw_mL45NLWOB73vz2Q5gVBX1rRgHJCKACBD1_bUa_-AflPupx26wji9Hcbxkrh08XdM_etxRN8BJFL5WbpPJsD92cBpfAM9yNdhNawlaqk0Gp5JdgEUNZUozlCRztwwB8iiQY/s400/angular-purple.gif) no-repeat top left;
font: bold 1em Helvetica, verdana, Georgia, "Times New Roman", Times, serif;
color : #000;
border-bottom : 5px solid #435388;
}
.post blockquote p {
margin: 0;
padding-top:10px;
}

Jigsaw Blockquote With An Image At Right Corner

jigsaw
 Blockquote Code:
.post blockquote {
margin : 0 20px;
padding: 10px 20px 25px 20px;
background : #9FCFFF url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiE0mjqxCXjibVnW2cBqGMvBVqCMIt7xVYFY6qBKHJfzy5KhlSXdGAntrKo0pCSK5wed5Xnz3edCB0Amb05o6AeZCNLVZtCtFcavwH_tEq5bWnmNO81CXRzL_OSjo4FnDL0Py92pWFyGoI/s400/block22.gif) no-repeat right bottom;
font: bold .9em "comic sans ms", arial, Helvetica,verdana, Georgia;
color : #484848;
border: 5px dashed #fff;
}
.post blockquote p {
margin: 0;
padding-top:10px;
}

Blockquotes With Classic Left Borders

left-sided-brownish
 Blockquote Code:
.post blockquote {
background: #F3F3F1 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj30lc-57nB0nE_CtTUYeuJ8pFLkPC7VS_x1yzSp4d_7hpCSwzxiONK0uR6JP5F30loK8defUoY7U2uXsktt8nNemegMvKC4qoy5FOvXVTRqeJRBqxiqOovietB9FceseKQK9YsbBgXuN8/s1600/comma-side-orange1.gif) ;
background-position:;
background-repeat:repeat-y;
margin: 0 20px;
padding: 20px 20px 10px 45px;
font-size: 0.9em;
font: italic 1.2em Georgia, "Times New Roman", Times, serif;
}
.post blockquote p {
margin: 0;
padding-top: 10px;
}

left-sided-green-black
 Blockquote Code:
blockquote {
background: #484B52 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhA2k09PYSeqcWBuTDGPKvnk2unSGHEdKaaUhZstCmewNac0XX7SPWuYDe2TkxGIaA6y7fSKi6Ucitg6XR8yulR41ZpbREp36UlZ0-tdij0dTHCSX3Gb32RDoXHg_SugwtDgWCuBIyc5B8/s1600/green-black-side.gif) ;
background-position:;
background-repeat:repeat-y;
margin: 0 20px;
padding: 20px 20px 20px 50px;
color:#C7CACF;
font: normal 0.9em Helvetica, verdana, serif, Georgia, "Times New Roman";
}
.post blockquote p {
margin: 0;
padding-top: 10px;
}

Blockquote With A Brown Corner Label

Brown-Scanned-copy
 Blockquote Code:
.post blockquote {
margin : 0 20px;
padding: 20px 60px 80px 20px;
background : #FEE4E3 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhSJ7S6GG7gf_gW8jIVqIH199fVc0GfUup5-B9khKxkOeHkl6vtUAZ8QStFYxXjw-32GsBvd4diAKVjBY6nmZO5zeFPgAW2Faed7kmSIq3qPi35JdMde9c5OveRRYsWzlU6A5XYKAC5OaI/s400/angular-right.gif) no-repeat bottom right;
font: bold italic 1em  Georgia, verdana, Helvetica,  "Times New Roman", Times, serif;
color : #000;
border: 1px solid #DDD;
}
.post blockquote p {
margin: 0;
padding-top:10px;
}

Blockquotes With Inverted Commas

 commas-navy-blue Blockquote Code:
.post blockquote {
  font: 18px normal Tahoma, sans-serif;
  padding-top: 10px;
  margin: 5px;
  background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiFEFNA-YfKtXCV_NgIw36tOfXbP_KBW2ii9OOhhmvou3TGsXVeQ2aG5oab6jrt1fht3b9LESxeEZz-3UvIXgqC5FgpbM4QDEz0pT1yu2xDONSDJ3VNBbBqSPGCMG24FPtyAMwR9OGe-30/s400/comma-left.gif) no-repeat top left;
  text-indent: 65px;
  }
  .post blockquote div {
    display: block;
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgPDkPdIwiNQAxj8Qmr7a4RcS8tkQmyCVkDIbU_vtDLU5cMJ_hQrqoqDNE9hV_wkcQ9xq5wnKKLUW_ADZuy6aJWzwexSCwzm-wgFfSxCqLMszGbMu7k2OHkKrAGfWCA02uzqPOEXY6jv4E/s400/comma-right.gif) no-repeat bottom right;
padding-bottom:10px;
}
.post blockquote p {
margin: 0;
padding-top:10px;
}

commas-orange
  Blockquote Code:
.post blockquote {
  font: 18px normal Tahoma, sans-serif;
  padding-top: 10px;
  margin: 5px;
  background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjJHHXcNHoErSBBCBTfBtveUgpJW_Awb2HcD493fTs5bu3WS9wuqmZzw008LzwKQ4PH_-NasnR2lFQ_W3fRFNEILvzsL5Bfw4oJFMIn69wUSUrynvyWDUcEBQ0S3DGKV_67-wQKfNXhKRc/s400/comma1-left.gif) no-repeat top left;
  text-indent: 65px;
  }
  .post blockquote div {
    display: block;
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhgz4Pu5JcosUYx2FfwAs5M1FloSrkIW0WHBWvPBzOyV0kYMdb_gJ-eml-zBnu6fSWo3ac-8EfNyjVEkkvtYcd0JLgdhe-F4zNDLSXUBd_76otzYOELC8CxlVTHBqQi7oUPm3lN29l79ho/s400/comma1-right.gif) no-repeat bottom right;
padding-bottom:10px;
}
.post blockquote p {
margin: 0;
padding-top:10px;
}
commas-hands
 Blockquote Code:
.post blockquote {
  font:bold italic .9em  "comic sans ms", Tahoma, sans-serif;
  padding-top: 25px;
  margin: 5px;
  background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjWHy8eTKeVgVZX06qzJ4rNPjzTfF96CTxDcwPSLbiABQVGjnTnud7RToMW6El7idKiWWnP2MwBhkCkGBB-fXU8_bSqTaAjr5oeHvHa-ktUeB3FF2bvmH1Oif1HXUEMt6GMswpJwKCTSrU/s400/left.gif) no-repeat top left;
  text-indent: 65px;
color:#6299E4;
  }
  .post blockquote div {
    display: block;
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjxnfBTahdX_XBtel74ABGXpXc_y4SB4GKCfd8Whjad8xGfm9C_zrXvT3gk9mXT-Ve4Xz2RwgvYx2ONI0NGtmFCLuE_TfyjnV1jYetgAvmzSPrwCS6X09PBkzsynQT89ZEhBGbVtlJBOsI/s400/right.gif) no-repeat bottom right;
padding-bottom:30px;
}
.post blockquote p {
margin: 0;
padding-top:10px;
}
commas-green  Blockquote Code:
.post blockquote {
  font: italic 1em  "comic sans ms", Tahoma, sans-serif;
  padding-top: 10px;
  margin: 5px;
  background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhX69jWWx7JULuVy9Qez5ATA3_F0qTdGOT4JvnXtg32YB-4fHn_fBv8EO2fNfXbp3YOkBzTRxy7OtNzeEiCaYP2PbRhzL4uzurp-U0jkxZuKBI-7pbCWApZrbmJY-v5Q4_DKCPKwwKkF6w/s400/comma2-left.gif) no-repeat top left;
  text-indent: 65px;
  }
  .post blockquote div {
    display: block;
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5kn4sUl5ZcC1IndCpxMIHMNKgY3gk7Nn4CGNBevNH7JXLBjO7amiXnBO6bk4yH2Oal7hL4QgZMVxuMXazZKtXjX3lao5ODT5wPJRrH90VwND-5TDvGgAi0U_0FxVMzIZwcCxgsYSt1PY/s400/comma2-right.gif) no-repeat bottom right;
padding-bottom:10px;
}
.post blockquote p {
margin: 0;
padding-top:10px;
}

Blockquote With Well Aligned Image At Top


Copyrighted-red
 Blockquote Code:
.post blockquote {
margin : 0 20px;
padding: 70px 20px 20px 20px;
background : #E7E5DC url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg1YkhAlkApMFTxScnh6qlvoswBg_v7Q667NKdTbB89SrvsLRXN6c6xVhI2fKxkyFCVhxMoV_8vewB7dFmkbwRfONIHcX4GzWqEeu7noepR8DXyjNVkYZHOQ44NTCHzis6Ce29yBEEWeA8/s1600/block333.gif) no-repeat top;
font: normal 1em "comic sans ms",Helvetica, Courier,"Times New Roman", Times, serif;
color : #000000;
border-bottom : 7px solid #FF0000;
}
.post blockquote p {
margin: 0;
padding-top:10px;
}

Blockquote With Canopy Style Image At Top and Bottom


at-top-and-bottom
 Blockquote Code:
.post blockquote{
margin : 0 20px;
padding: 50px 30px 50px 30px;
background : #FFF url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhmQ4MkZWRpCD93cHGDCBzZ6N7K68hBpnbDsXS7J1_vFBwkoTrzHJIv36CUYnjCRjBPDx858dBAtyI66Kasv3tZlVPyS5vyp4utOtfbFWPoEXoZ_82r6hUGmhmQIGWo_jrHvfaVOU4A4j4/s1600/BLOCK1-TOP.gif) no-repeat top;
font: bold italic 1em Helvetica, verdana;
color : #000;
}
.post blockquote div{
background : #FFF url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEidCAeUmB8vyEGuU1zskXdhnHORk0BKv8vqirIr4RPVMx4dWb_ivLAxbu_Iuze24KN6kLHRDV1J_FBUWcVGwoDOXupAyGWdGPKjFwNUWQs2u4_UCwmwRUK2dKVeN8q4W3QHxrrJpHrUjRE/s1600/BLOCK1-BOTTOM.gif) no-repeat bottom;
padding-bottom: 50px;
}
.post blockquote p {
margin: 0;
padding-top:10px;
}

Box Style Blockquote Surrounded By Borders

Copyrighted-orange
 Blockquote Code:
.post blockquote {
margin : 0 20px;
padding: 70px 20px 30px 20px;
background : #E7E5DC url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhUJW8jlM-pyFc5UOSnT-1magjQjWszgSnczndn-Dap-cuFAOKyUVZJq9UFfrOUlhUBy5gB5rNx4IfXAnb9i5OMF6bgjhE_3CK1vLnljnsqJOG0412vhvUJZYREDdELIxJGN2zo1138J0s/s400/block3331.gif) no-repeat top;
font: bold .9em Helvetica, "comic sans ms",Courier,"Times New Roman", Times, serif;
color : #343434;
border-left : 7px solid #FF7802;
border-right : 7px solid #FF7802;
border-bottom : 7px solid #FF7802;
}
.post blockquote p {
margin: 0;
padding-top:10px;
}


The Monkey Man Blockquote!!!

Once you get an idea on how to use these blockquotes then you can create artistic and some funny blockquotes like the one below,monkey-man
 Blockquote Code:
.post blockquote{
margin : 0 35px;
padding: 80px 0px 0px 0px;
background : #E6F1FA url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiCt6nOxqLcgZLqA_-T_EHo0S4hSz6sqGEz2mMgBSDi6xffN6nhCpkeL_NTpWxXFQcXGqECVLj8JAZFulXYNJF75Qd475PLAJezlIFA80MZ4fe8sUo0XYLbv73IB1yHtYbe6GVGu5WQrXg/s400/head2.gif) no-repeat top;
font: normal 1em "comic sans ms", Helvetica, verdana;
color : #666;
}
.post blockquote div{
background : #E6F1FA url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgEl977DYug_6JFcs1jqdvDm2ycpoqoZpRaG5kjVCW0ZU_GmKe6g-SDpM7hMS_pkhC1r_RrWZK8DikpUO13sktAwgk7E29cmGvEkRa2rpoNaj_BZFUx9EOx6bx5wTIOu6wCen0mVYdaNIo/s400/head-bottom3.gif) no-repeat bottom;
padding-bottom: 50px;
}
.post blockquote p {
margin: 0;
padding: 20px;
}

Implementation and Customization:-

Implementaion:-
Now To add One of these amazing and unique blockquotes to your blogs, do the following,
  1. Go to Blogger > Layout > Edit HTML
  2. Backup your template
  3. Search for .post blockquote and delete it along with all its occurrences. In most templates the codes look like this,
    .post-body blockquote { line-height:1.3em; }
    OR
    .post blockquote{ bla bla bla}
    If you couldn’t find such code then it is OK.
  4. Now search for ]]></b:skin> and just above ]]></b:skin> , paste the code for one of your favourite blockquotes. I am giving a sample code below
.post blockquote {
margin : 0 20px;
padding: 60px 30px 40px 20px;
background : #F1F8FE url(Paste Image Link here) no-repeat 350px 5px;
font: normal .9em "comic sans ms", Courier,"Times New Roman", Times, serif;
color : #000;
border: 8px dotted #DAB547;
}
.post blockquote p {
margin: 0;
padding-top:10px;
}
Customization:-
Important areas to be customized are bolded. Where,
  • padding: It refers to the distance of the text from blockquote borders. Which goes in this order –> Top Right Bottom Left
  • background :- This includes Blockquote background color and image used in it. The six digit value is the background color and image link is inserted in place of bolded text in this part-> url(Paste Image Link here)
  • font :- It includes font style, size and type respectively. Match the colours with the code above for reference.
  • color :- This refers to text colour. You can use a different font colour using our color chart
  • border :- This refers to border width, style and colour respectively.
  • All other blockquotes can be customized in similar way.
     5.      After customizing finally save your template and preview it to see the interesting new change.
Note:- For Blockquotes with inverted commas, canopy style and the Monkey Man, there is a little more coding required. Read below
Guide:- For above mentioned blockquotes you need to add some extra tags inside blogger editor as explained below,
Now Whenever you have written a Quote inside the compose mode of Blogger Editor simply switch to the HTML mode and add two tags i.e <div> and </div> between the blockquote tags as demonstrated below,
<blockquote><div>Your Quote Will Be Here</div></blockquote>

Play With Each Blockquote Code!

To get more used to the codes above you need to play with some CSS using our HTML Editor.
Inside MBT HTML Editor paste the any of the blockquote codes above between <style> and </style>  and just below </style> paste this code,
<blockquote>Write Anything Here As a Text</blockquote>
For example for the Owl Blockquote paste the codes in this pattern,
<style>
blockquote {
margin : 0 20px;
padding: 60px 30px 40px 20px;
background : #F1F8FE url(file:///c:/Documents%20and%20Settings/mustafa.MYBLOGGERTRICKS/Desktop/blockquote/owl-icon-48.png) no-repeat 350px 5px;
font: normal .9em "comic sans ms", Courier,"Times New Roman", Times, serif;
color : #000;
border-left: 8px dotted #DAB547;

}
blockquote p {
margin: 0;
padding-top:10px;
}

</style>
<blockquote>Write Anything Here As a Text</blockquote>

Start Playing! :- MBT HTML EDITOR

That’s All!
I have created all images with text “Copyrighted Coding” or “Scanned Copy” etc. If you want to write something else than use my images as reference size to create your own custom images.
I will publish two consecutive posts where I will share a blockquote with auto number list and a blockquote with a blinking bulb! Make sure you subscribe to be updated about latest CSS and HTML tricks related to Blogger.
Do not forget to tell us how useful or unique this post was for you.

Blockquote CSS Examples With Auto Number List –The Notebook Diary!

According-To-MR-MBT

 

 

 

 

 

 

 

 Adding Blockquote With Auto Number List To Blogger

To add this blockquote to blogger, follow the simple steps below,
  1. Go to Blogger > Layout > Edit HTML
  2. Backup your template
  3. Search for .post blockquote and delete it along with all its occurrences. In most templates the codes look like this, 
.post-body blockquote { line-height:1.3em; }
OR
.post blockquote{ bla bla bla}

If you couldn’t find such code then it is OK.

4.Now search for ]]></b:skin> and just above ]]></b:skin> , paste the code below,

blockquote {
background: #fff url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjRDycCEMwS3IDo1H7Ts8BxXiE_SfyHsWbAd7U5qz2kwntQsfQgffAEPdsq5kAO9C4VulCYirjXkg-vXr-4D3VjngF-vZXWkbYCYSvJcUFGoH0VOgAduzx3l3BAWn5vaySexzRt-nTcHGU/s1600/notebook-with-numbers.gif) repeat-y;
margin: 0 20px;
padding: 0px 20px 5px 55px;
color:#7a7a7a;
font: bold 0.9em  "Comic Sans MS", verdana;
line-height: 153%;
}
blockquote p {
margin: 0;
}


Customization:-
You can also change the Number list background by replacing the bolded image link in the code above with the image URLs of one of these blockquotes.
Tip:- Right Click the links below each blockquote and choose Save Link As Or Copy Link Location to its image URL. 


font :- It includes font style, size and type respectively. Match the colours with the code above for reference. Font style can be bold, normal , italic or bold italic
color :- This refers to text colour. You can use a different font colour using our color chart



Adding Blockquote With No Number List To Blogger




To add this blockquote simply follow the same steps as shared for the blockquote with auto number list. But for step#4 paste the code below instead, 



blockquote {
background: #fff url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjTQn9Nmw52oKkzFjgeUYgd_FJY0ao8FsinS_9RQPIX90WvNafbQ06cP7xZBoPh_CI1efc5axW_9VNpm-onwOmb5deK_AgEK-hszmP-gw8EVLlEK0fOF4f0HS5L4QKyoJG8h0bPZiTdqKQ/s400/notebook.gif) repeat-y ;
margin: 0 20px;
padding: 20px 20px 20px 55px;
color:#7A7A7A;
font: bold 0.9em  "Comic Sans MS", verdana;
line-height: 155%
}
blockquote p {
margin: 0;
}

You can replace the Background Image link with one of these.
Tip:- Right Click any of the blockquote images below and choose Save Link As Or Copy Link Location to get its image URL. notebook-withoutbrown
notebook-withoutnavy
notebook-withoutpink
That’s All!
Note:- If you want to increase the number range for the blockquote with auto number list or if you want to create an image with your custom colours than I can provide you the PDF source file for it. But it will be given to subscribers only. If you haven’t subscribed yet, kindly do so to avail unlimited download resources from us to you.
Let me know how was this new discovery :>>

 

How To Customize “Block quotes” In Blogger With Mouse Hover Effect – The Blinking Bulb!


blinking bulb 

 

 

 

 


 

Add The Blinking Bulb Blockquote To Blogger


This blockquote can be added in the similar way as explained in my earliar posts. If you are new then read this part of my previous post –> Add and Customize Blockquote In Blogger
The CSS code to be inserted just above ]]></b:skin> is this,



blockquote {
background: #000 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjPBOHs6lDr2nRwdPNBFCeVEcvESgEZR_w1xt3ONNvhKnCb3HqLFBqqLwVgkgmAiiAZqa_ZqUWajIPTrB45t6KplSqxqCPnfcWcduxXHnIcnYs0PDPoXK2-DCFQseXMavN3Hb4aucBBZ8I/s1600/bulb-off.gif) no-repeat right bottom ;
margin: 0 20px;
padding: 20px 70px 20px 20px;
color:#595959;
font: bold 0.9em "comic sans ms", "Times New Roman", Times, serif;
border:1px solid #DDD;
}
blockquote:hover {
background: #000 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEihcU9qWou-lhxXlj83KTle30E3OMx5k295vLmJcJCElPnHMhIfmqOHAeAgzsU0qmT0QzYQ97nG98KVnFPslFrxrqhqu_q4F9mKKS5-uYWxQN7n9KTOP8VPvUcTfdREtoz5A7D1owS9Ork/s1600/bulb-on.gif) no-repeat right bottom ;
color:#E0E089;
}

blockquote p {
margin: 0;
padding-top:10px;
}

The second image in red link appears on mouse hover and the second image in green link appears when mouse is moved away from the blockquote.

Create Custom Blockquote Of Your Choice!

You can use similar effect by changing the background images, font colors, border colors or background colors etc. The first part in the CSS code above i.e blockquote { bla bla } represents the effect on normal view and the second code i.e blockquote:hover { bla bla } is responsible for the hover effect. So you can easily customize the font and border types and colors along with background colors to create a cool mouse hover effect.
I have shared some examples below which uses no image at all,






Let me know if any thing is left unclear. For customization guide read this post –> Customize Blockquote In Blogger




Related Posts Plugin for WordPress, Blogger...

Subscribe Updates, Its FREE!