Thursday, May 28, 2015

Stylish Comment Box for Blogger (Beautiful Comment Box)

I will share with you today 4 different types of Beautiful comment box widget. Hopefully you will love these widgets.

Go to Layout >> Add a widget >>> HTML/JAVA Script  >>>> Paste one of this codes and press Save.  And you are done...!!!

Widget 1:
<style type=”text/css”>
ul.bh_recent_comments {
    list-style: none;
    margin: 0;
    padding: 0;
}
.bh_recent_comments li {
    background: none!important;
    margin: 5px!important;
    padding: 5px!important;
    display: block;
    clear: both;
    overflow: hidden;
    list-style: none;
}
.bh_recent_comments li .avatarImage {
    padding: 3px;
    background: #fefefe;
    -webkit-box-shadow: 0 1px 1px #ccc;
    -moz-box-shadow: 0 1px 1px #ccc;
    box-shadow: 0 1px 1px #ccc;
    float: left;
    margin: 0 6px 0 0;
    position: relative;
    overflow: hidden;
}
.avatarRound {
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
}
.bh_recent_comments li img {
    padding: 0;
    position: relative;
    overflow: hidden;
    display: block;
}
.bh_recent_comments li span {
    margin-top: 3px;
    color: #666;
    display: block;
    font-size: 12px;
    line-height: 1.4;
}
.bh_recent_comments li {
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.bh_recent_comments li:hover {
    background: #FD7474 !important;
    border-radius: 100%;
}
.bh_recent_comments li {
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    border: 2px solid transparent;
}
.bh_recent_comments li:hover {
    -webkit-transform: scale(1.2) translate(15px);
    -moz-transform: scale(1.2) translate(15px);
    -ms-transform: scale(1.2) translate(15px);
    -o-transform: scale(1.2) translate(15px);
    transform: scale(1.2) translate(15px);
    box-shadow: 0 0 20px 1px #aaa;
}
</style>
<script type=”text/javascript”>
//<![CDATA[
    // Recent Comments Settings
    var
 numComments  = 5,
 showAvatar  = true,
 avatarSize  = 45,
 roundAvatar = true,
 characters  = 40,
 showMorelink = false,
 moreLinktext = "More ?",
 defaultAvatar  = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEivJyKMMWCoF6bae5Yzy55ODG7CmQsB7qrukh6XCVQL8fXb0JeKnhtg6Sjnr6_orBPIhkdPAIzeW1ujcacMA3HW_5v28sSudA0Ga4XgbvaJUkcWYN8tiMBKRvT3vzDpAwabHwfaulX8NwVq/s1600/blogger-avatar-1.png",
 hideCredits = true;
//]]>
</script>
<script type=”text/javascript” src=”http://dl.dropbox.com/u/81212926/bloggerheroe-recent%3Dcomments.js”></script>
<script type=”text/javascript” src=”/feeds/comments/default?alt=json&callback=bh_recent_comments&max-results=5″></script>



Widget 2:   Animated
<style type=”text/css”>
    ul.bh_recent_comments{list-style:none;margin:0;padding-bottom:5px;}
    .bh_recent_comments li{margin:0px 0px 0px 0px;
border-bottom:1px dotted pink;
 display:block;
 clear:both;
 overflow:hidden;
}
    .bh_recent_comments li .avatarImage{-webkit-border-radius:100px ;
 -moz-border-radius:100px ;
 border-radius:100px ;
 padding:3px;
 background: cyan;
 -webkit-box-shadow:0 1px 1px #333;
 -moz-box-shadow:0 1px 1px #333;
 box-shadow:0 1px 1px #333;
 float:left;
 margin:6px 6px 6px 0;
 position:relative;
 overflow:hidden;
img filter:alpha(opacity=50);
-moz-opacity: 0.5;
opacity: 0.5;
-khtml-opacity: 0.5;
}
 .bh_recent_comments li .avatarImage:hover{-webkit-border-radius:100px ;
 -moz-border-radius:100px ;
 border-radius:100px ;
 padding:3px;
 background: pink;
 -webkit-box-shadow:0 1px 1px #333;
 -moz-box-shadow:0 1px 1px #333;
 box-shadow:0 1px 1px #333;
 float:left;
 margin:6px 6px 6px 0;
 position:relative;
 overflow:hidden;
img filter:alpha(opacity=100);
-moz-opacity: 1.0;
opacity: 1.0;
-khtml-opacity: 1.0;
}
    .avatarRound{-webkit-border-radius:100px;-moz-border-radius:100px;border-radius:100px;}
    .bh_recent_comments li img{-webkit-border-radius:100px;
 -moz-border-radius:100px;
 border-radius:100px;
 padding:0px;
 position:relative;
 overflow:true;
 display:block;
}
    .bh_recent_comments li span{color: #FFFFFF;
 display: block;
 font-size: 11px;
 font-style: italic;
 line-height: 1.4;
}
.commentNavi {
 clear: both;
 padding: 5px 0;
 display:inline-block;
 width:100%;
}
.commentNavi a, .commentNavi span.current {
 font-size:11px !important;
}
</style>
<script type=”text/javascript”>
//<![CDATA[
    // Recent Comments Settings
    var
 numComments  = 7,
 showAvatar  = true,
 avatarSize  = 40,
 roundAvatar = true,
 characters  = 50,
 defaultAvatar  = "http://www.gravatar.com/avatar/?d=mm",
 hideCredits = true;
//]]>
</script>
<script type=”text/javascript” src=”http://dl.dropbox.com/u/81212926/bloggerheroe-recent%3Dcomments.js”></script>
<script type=”text/javascript” src=”/feeds/comments/default?alt=json&callback=bh_recent_comments&max-results=4″></script>


Widget 3:
<style type=”text/css”>
ul.bh_recent_comments {
    list-style: none;
    margin: 0;
    padding: 0;
}
.bh_recent_comments li {
    background: none!important;
    margin: 5px!important;
    padding: 5px!important;
    display: block;
    clear: both;
    overflow: hidden;
    list-style: none;
}
.bh_recent_comments li .avatarImage {
    padding: 3px;
    background: #fefefe;
    -webkit-box-shadow: 0 1px 1px #ccc;
    -moz-box-shadow: 0 1px 1px #ccc;
    box-shadow: 0 1px 1px #ccc;
    float: left;
    margin: 0 6px 0 0;
    position: relative;
    overflow: hidden;
}
.avatarRound {
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
}
.bh_recent_comments li img {
    padding: 0;
    position: relative;
    overflow: hidden;
    display: block;
}
.bh_recent_comments li span {
    margin-top: 3px;
    color: #666;
    display: block;
    font-size: 12px;
    line-height: 1.4;
}

.bh_recent_comments li {
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    border: 2px solid transparent;
}
.bh_recent_comments li:hover {
    -webkit-transform: scale(1.2) translate(15px);
    -moz-transform: scale(1.2) translate(15px);
    -ms-transform: scale(1.2) translate(15px);
    -o-transform: scale(1.2) translate(15px);
    transform: scale(1.2) translate(15px);
    box-shadow: 0 0 20px 1px #aaa;
}

</style>
<script type=”text/javascript”>
//<![CDATA[
    // Recent Comments Settings
    var
 numComments  = 5,
 showAvatar  = true,
 avatarSize  = 45,
 roundAvatar = true,
 characters  = 40,
 showMorelink = false,
 moreLinktext = "More ?",
 defaultAvatar  = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEivJyKMMWCoF6bae5Yzy55ODG7CmQsB7qrukh6XCVQL8fXb0JeKnhtg6Sjnr6_orBPIhkdPAIzeW1ujcacMA3HW_5v28sSudA0Ga4XgbvaJUkcWYN8tiMBKRvT3vzDpAwabHwfaulX8NwVq/s1600/blogger-avatar-1.png",
 hideCredits = true;
//]]>
</script>
<script type=”text/javascript” src=”http://dl.dropbox.com/u/81212926/bloggerheroe-recent%3Dcomments.js”></script>

<script type=”text/javascript” src=”/feeds/comments/default?alt=json&callback=bh_recent_comments&max-results=5″></script>



Widget 4:

<style type=”text/css”>
ul.bh_recent_comments {
    list-style: none;
    margin: 0;
    padding: 0;
}
.bh_recent_comments li {
    background: none!important;
    margin: 5px!important;
    padding: 5px!important;
    display: block;
    clear: both;
    overflow: hidden;
    list-style: none;
}
.bh_recent_comments li .avatarImage {
    padding: 3px;
    background: #fefefe;
    -webkit-box-shadow: 0 1px 1px #ccc;
    -moz-box-shadow: 0 1px 1px #ccc;
    box-shadow: 0 1px 1px #ccc;
    float: left;
    margin: 0 6px 0 0;
    position: relative;
    overflow: hidden;
}
.avatarRound {
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
}
.bh_recent_comments li img {
    padding: 0;
    position: relative;
    overflow: hidden;
    display: block;
}
.bh_recent_comments li span {
    margin-top: 3px;
    color: #666;
    display: block;
    font-size: 12px;
    line-height: 1.4;
}
.bh_recent_comments li {
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    border: 2px solid transparent;
}
.bh_recent_comments li:hover {
    border: 2px Solid #1BA1E2;
}
</style>
<script type=”text/javascript”>
//<![CDATA[
    // Recent Comments Settings
    var
 numComments  = 5,
 showAvatar  = true,
 avatarSize  = 45,
 roundAvatar = true,
 characters  = 40,
 showMorelink = false,
 moreLinktext = "More ?",
 defaultAvatar  = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEivJyKMMWCoF6bae5Yzy55ODG7CmQsB7qrukh6XCVQL8fXb0JeKnhtg6Sjnr6_orBPIhkdPAIzeW1ujcacMA3HW_5v28sSudA0Ga4XgbvaJUkcWYN8tiMBKRvT3vzDpAwabHwfaulX8NwVq/s1600/blogger-avatar-1.png",
 hideCredits = true;
//]]>
</script>
<script type=”text/javascript” src=”http://dl.dropbox.com/u/81212926/bloggerheroe-recent%3Dcomments.js”></script>
<script type=”text/javascript” src=”/feeds/comments/default?alt=json&callback=bh_recent_comments&max-results=5″></script>


ENJOY>>>!!!

52 comments:

  1. One time i actually got on your webpage even if finding account simply to some extent great deal submits. Fulfilling technique for coming, We're book-marking together receive styles ending rises up. free psn codes

    ReplyDelete
  2. Keep up the good work , I read few posts on this web site and I conceive that your blog is very interesting and has sets of fantastic information. PSN codes list

    ReplyDelete

  3. Selamat datang di obat herbal alami qnc jelly gamat sangat berkhasiat, Solusi pengobatan berbagi macam-macam jenis penyakit, Penyakit luar maupun dalam, Untuk informasi lebih lengkap dan tips kesehatan yang bermanfaat, Silahkan kunjungi website resmi kami.
    DERIS ALPONSO

    ReplyDelete
  4. Nice: https://www.nep-techno.tk/2018/11/how-to-create-amzing-navigation-bar.html

    ReplyDelete
  5. such a really appreciating content, really I enjoyed it too much please keep posting content like this.
    https://www.buzzytips.com/2019/04/Stylish-Comments-Box-in-Blogger.html

    ReplyDelete
  6. Great writing hand. Please do not stop to share your most valuable knowledge with us. <a href='https://www.nursinghelpline24.com/>Nursing Helpline</a>

    ReplyDelete
  7. Our Pakistani escort agency is looking for young bold and open minded females who can work as part time or full time escorts. Selected females will be paid as per their wish. If they can entertain our rich clients well then we will be paying them very good far more their expectations. We prefer college girls and fashion models to work for us. Personal details of females working for us will be kept highly confidential.
    ESCORTS IN LAHORE
    LAHORE ESCORTS
    PAKISTANI ESCORTS
    ESCORTS IN ISLAMABAD
    ISLAMABAD ESCORTS

    ReplyDelete
  8. And indeed, Iím just always astounded concerning the remarkable things served by you. Some four facts on this page are undeniably the most effective Iíve had.
    Jmeter | Jmeter training in chennai | best jmeter training in chennai | jmeter training institute in chennai

    ReplyDelete
  9. The article was up to the point and described the information very effectively. Thanks to blog author for wonderful and informative post.
    website designing Service

    ReplyDelete
  10. To assist dissertation web sites over the web in case you get naturally released as part of your web site. html questions

    ReplyDelete
  11. Thanks. i will give it a try
    https://www.bestblogging.co.uk

    ReplyDelete
  12. Comment box add in your website this is best website...
    Click here to see the visit here more.....

    ReplyDelete
  13. your coding algorithm is very simple and easy to understand. to know you more information to python training in chennai

    ReplyDelete
  14. Nice post but they are not working
    https://www.khatarnakideas.info
    https://www.khatarnakideas.info/2020/04/intresting-fact-bear-grylls-running-wild.html

    ReplyDelete
  15. Comments became an integral part of almost each website on the web — you can’t imagine there’s an article out there that can’t be commented. And it’s only logical, because people want to talk about what they read, listen to or see. And they want it right there — under what they’ve read or seen, not on their social networks.
    15th August Status Video With Your Name Download all name click here

    ReplyDelete
  16. You're even more beautiful on the inside than you are on the outside. You have the courage of ... You have the best ideas. You always find... Wishes Surprise Download in comment similar post of statusPro Viral Status For Love Whatsapp Best Deal Jioamazon At AmazonShopping 70% Discounts Come Fast Buy Shoping Limited offers
    thank for....

    ReplyDelete
  17. When you book a Escorts In Lahore Our Sexiest escorts will become your girlfriend and gives you immense happiness and satisfaction throughout the whole time.

    ReplyDelete
  18. Trending shayari, greeting, wishes, quotes, status, love, sad, romantic and All Categories poetry available here.
    Also read - Ansh Pandit Shayari

    ReplyDelete
  19. Mixhubb is Free online Meeting/Conferences/Webinars self-managed Event Platform with one month free. Free Sign up: https://bit.ly/3wkb40f

    Include >>Free Subscription >>

    >Unlimited Events
    >100 Attendees Credit/Month
    >72 Hours/Month (Event length)
    >10 Booth/Month
    >Networking Tables
    >1 Organiser account
    Free Sign up: https://bit.ly/3wkb40f

    #webinar #networking #event #events #onlineevents #virtual #virtualevents #onlinewebinar #eventplanning #eventplanner

    ReplyDelete
  20. Thanks for sharing. Searching for the best luxury villa in Goa for rent? If yes then visit our company Maison 9. Appreciate remarkable vacations in north Goa at luxury private pool villa. Book now or call now 9810132318.

    ReplyDelete

  21. Texas Web Development |Web Design Agency Texas| - Green House Design Agency
    Wanted to hire the best web design agency in Texas?
    Green House Design Agency provides web and app development services that are tailored to your company's exact requirements.

    ReplyDelete
  22. This comment has been removed by the author.

    ReplyDelete
  23. This comment has been removed by the author.

    ReplyDelete
  24. here you can check it easily

    Brand Bucket

    ReplyDelete
  25. Go IVF Surrogacy is the best IVF Clinic in Mumbai that offers the best standard & advanced IVF treatment in Mumbai to people worldwide, whosoever is seeking to have their baby. It is a clinic where the hope of having a baby turns into reality because it has highly experienced & trained fertility professionals who give their best to achieve the successful outcome of the procedure. The experts at this clinic use the latest & advanced techniques to treat routine & complex infertility cases which help many childless couples to have their babies. They can achieve the highest success rates of IVF treatment in Mumbai for people of growing age.https://www.ivfsurrogacy.in/ivf-treatment-mumbai/

    ReplyDelete
  26. Nice one. Free best virtual classroom software Useful to all professionals and students.

    ReplyDelete
  27. With https://techtoroms.com/roms/nintendo-wii/ is a home video game console produced by Nintendo. This is the company's seventh generation system. The two original Wii models were: Home Edition including Wii Remote Plus; Deluxe Edition with Wii Remote Plus as well as the all-new Balance Board. The original model of the Wi was replaced by the Wii U in 2012. Worldwide, developers have sold more than 101 million software units for the Wii. It has a number of games, including some of the most popular, such as Super Mario Galaxy, Wii Sports, and The Legend of Zelda: Twilight Princess. You will need Nintendo Wii ROM, Wii ROM in WBSF or Wii ROM ISO to play your favorite Wii games on any platform. Techtoroms offers downloads for many popular titles in a variety of formats, including free downloads of Wii ROMs for Android and PC. You can also choose from several different formats to download these Wii ROMs for free, including Android and PC.

    ReplyDelete
  28. Artificial Intelligence (AI) has become a transformative force in various industries, As we step into 2024, the impact and consumption of artistic content is set to reach unprecedented heights.
    Art and Entertainment Industry in 2024?

    ReplyDelete
  29. Carbon Footwear stands out as a pioneer in merging cutting-edge Carbon Footwear fabrication slipper techniques with a commitment to sustainability. The brand's latest venture into slipper design showcases a perfect harmony of comfort, style, and eco-consciousness.
    Carbon Footwear fabrication slipper

    ReplyDelete