June 21, 2012

Widgets

Expand/Collapse Blogger comment Box with jQuery


expand/collapse blogger comment boxBlogger comment form is the only section in blogspot blogs that still irritates users a lot.  After a successful customization of this form last year we now took a step even further to integrate jQuery slideToggle and accordion effect into it. Luckily major browsers now do support JavaScript library so this widget is compatible with all browsers. The tutorial today will help you to create a beautiful expandable and collapsible huge button that will display comment form by sliding down smoothly when triggered and hide it when clicked again. We will be using simple jquery functions to enable a button to  show/hide all div sections that hold the comments box.

Kindly also check out previous tutorials below to add even more fun.

Blogger Comment Box Series
4. Expand/Contract Blogger comment Box with jQuery

How it works?

This idea came in my mind by reading an interesting discussion between some fellows at stackoverflow. The discussion was a little confusing at first but a little focus made it to this structured code.  All this functionality does is that it hides the div sections in active mode but displays the content when clicked. You can see a live demo by clicking our comment box .

collapsible comment box

Credits

The codes below are copyrights of MBT blog. We therefore request both bloggers and developers to kindly attach an attribution link back to this page if they wish to share this tutorial with their readers.

Note: Most of our gadgets are redistributed with no credits attached. All such blogs are being repeatedly reported to both AdSense, Blogger and DMCA. Some readers are therefore advised to kindly use our resources only for non-commercial use only.

Install on blogger

The installation guide is extremely simple. We have kept the steps as clear as possible. You just need to copy and paste the codes as guided. Lets get to work now.

  1. Go To Blogger > Template
  2. Backup your template
  3. Click Edit HTML
  4. Click Proceed
  5. Click Expand Widget Templates
  6. Just below <head> paste the following code:

<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js' type='text/javascript'/>
<script type='text/javascript'>
$(document).ready(function(){
   
    $(&quot;.toggle_container&quot;).hide();
 
    $(&quot;h3.trigger&quot;).click(function(){
        $(this).toggleClass(&quot;active&quot;).next().slideToggle(&quot;slow&quot;);
    });
 
});
</script>

      7.  Now search for ]]></b:skin>   and just above it paste the following CSS code

/*----- Comment Box by www.MybloggerTricks.com ----*/

h3.trigger {
background: url(http://mybloggertricks.googlecode.com/files/comment-boxbg.png) no-repeat;
height: 44px;
line-height: 46px;
width: 518px; border-radius:4px;
font-family:Arial;
font-size: 1.4em;
font-weight: bold;
text-align:left;
color:#A1A1A1;
float: left;
cursor:pointer;
box-shadow: #333 0px 1px 3px;
padding:0 0 0 50px;
margin:10px 0px 10px 10px;
}

h3.active {
background-position: bottom left;
color:#ddd;
}
.toggle_container {
padding-left:10px;
overflow: hidden;
clear: both;
}

  • To change the width of the button just edit: 518px
  • To change the color, font size, font type of the text "Click here to add Comment" edit the highlighted part of the code.

       8.    Next search this:

<b:includable id='comment-form' var='post'>

       9.   Just below it paste the following code:

<h3 class='trigger'>Click Here To add Comment</h3>
<div class='toggle_container'>
<div class='block'>

and just above </b:includable> paste this code:

<p style=' line-height:0px; font-family:Arial; font-size:8px; font-weight:bold; text-align:right;'><a href='http://www.mybloggertricks.com/2012/05/create-floating-bar-for-pinterest-other.html' style='color:#CAC8C8;'><i>Blogger Widgets</i></a></p>

</div>
</div>

 

See the image below to see you have followed the steps correctly.

changing the comment form

    10. Save your template and all done!

You can customize the comment form by reading our previous tutorials. You can choose over one thousand background themes to breath a new life in the same commenting system that once looked really dull and simple.

Visit your blog to see your blog in completely different neat look. Your visitors will love to comment now! :)

Need help?

If you needed any help just let me know. I just hope this new tweak proves useful for most of you. I would love to hear your thoughts on this latest widget.  Do not forget to share it! :) Take good care of yourselves and your loved ones. Peace and blessings pals.




If you enjoyed this post and wish to be informed whenever a new post is published, then make sure you Subscribe to our regular Email Updates!

If you don't want to get yourself into Serious Technical Trouble while editing your Blog Template then just sit back and relax and let us do the Job for you at a fairly reasonable cost. Submit your order details by Clicking Here »

108 comments:

Haider Afridi on Jun 21, 2012, 12:27:00 AM said... #

First to Comment Again :)
I deserve an Award for this :P

It is AWESOME !
I just saw it today .....

Hamxa Wasim on Jun 21, 2012, 12:30:00 AM said... #

Thanks ALot

Hamxa Wasim on Jun 21, 2012, 12:35:00 AM said... #

@Hamxa WasimIt's just text instead of the button

Jay Ryan M. on Jun 21, 2012, 6:55:00 AM said... #

i'm waiting for this tutorial..
haha..

Nice Post...

JayRyan'sBlog was inviting you to be a Guest Post Author..

Thank you so much.

-jayryan09-

syed shah on Jun 21, 2012, 8:25:00 AM said... #

yeah...nice post...and thanks for interlinking with others..this helps alot...:D

YouTube Widget
Regards,
ProBloggers

Vijay Prakash on Jun 21, 2012, 9:08:00 AM said... #

Very nice tutorial bro. But i was studying on this script from 2 days n you posted it earlier than me. . I am also studying this from stackoverflow. Please don't mind when i post this tutorial with attribution of stackoverflow.


How To Get Genuine Adsense Approval

Vijay Prakash on Jun 21, 2012, 9:19:00 AM said... #

Bro, for your reference i was already working on this code. .

$(document).ready(function(){
$(".togglebox").hide();
$("h2").click(function(){
$(this).next(".togglebox").slideToggle("slow");
return true;
});
});

si on Jun 21, 2012, 9:38:00 AM said... #

Brother it is possible to move and set above first comment? it will be look better and easy. am right? I Know you can.

si on Jun 21, 2012, 9:42:00 AM said... #

Brother it is possible to move and set above first comment? it will be look better and easy and need easy color Customization.

Thanks

Santu on Jun 21, 2012, 10:07:00 AM said... #

nice tutor.. thanks for sharing..
Instead of black background can we use other colors background?

Regards
Technology Blog

Pk sharma on Jun 21, 2012, 10:10:00 AM said... #

It is AWESOME series.Top 30 Most Useful Website For Everyone

Debbie Navarro on Jun 21, 2012, 10:42:00 AM said... #

Thanks Again!

Linto Codes on Jun 21, 2012, 12:25:00 PM said... #

Nice Post... Thanks Mohammad


Top Blogging

Tricks Ever Seen..

lemonadeflirt on Jun 21, 2012, 12:26:00 PM said... #

Thanks its amazing and its unique thing to every blogger. Nice post keep posting new articles
Stylish Blogger Threaded Comments With Author Comments

Abdul Basit on Jun 21, 2012, 12:30:00 PM said... #

nice work bro keep it up its a really nice tutorial : offshore hosting

Abhishek sony on Jun 21, 2012, 1:13:00 PM said... #

Yeah i was waiting for this post :)

thanks bro successfully added on my blog http://nannu4u.blogspot.com/

Susannah Dickey on Jun 21, 2012, 2:19:00 PM said... #

I feel really nice reading these articles I mean there are writers that can write good material.
Web Development

Felix Waweru on Jun 21, 2012, 4:18:00 PM said... #

After following your instructions and implementing the same in my blog. When I save my template, blogger prompts me with the following error code:

Error code: bX-to3x02,

What could be the problem?

SR on Jun 21, 2012, 5:19:00 PM said... #

Nice Post brother
Tech Blog

meesum raza on Jun 21, 2012, 7:12:00 PM said... #

woahoo cool but mustafa please provide a tutorial for making it look like the one you have in your blog!

1:Copying Blogger Widgets

2:Dota2 Invite Giveaway

Tanmay Kapse on Jun 21, 2012, 10:25:00 PM said... #

i am only getting the text , no button Plz help

Prime Aque on Jun 23, 2012, 5:31:00 AM said... #

Thank you so much Sir, I have added this with my facebook social plug-in comments :)

Mohammad Mustafa Ahmedzai on Jun 25, 2012, 12:10:00 AM said... #

@haider

You surely deserve an applause always young champ. :p


@Hamxa
Its a button with text on foreground. Its clickable pal :)

@vijay

If you understood the discussion out there and created your own code then sure you deserve all the credit. Proud of you :)

@si

Yes dear you can do that but I wont advise that you move the entire iframe box. Instead you can simply use this image :

http://mybloggertricks.googlecode.com/files/comment-boxbg.png

and link it to #comments. Place this image at the top so that when visitors click it they will be brought straight down towards the Expandable box. Try it and let me know :)

@Felix


If blogger is giving error then instead of using the code in step#6 please paste this code instead just below <head>

<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js' type='text/javascript'/>
<script src='http://mybloggertricks.googlecode.com/files/expandablecomments.js' type='text/javascript'/>

@meesum

You can follow the tutorial series to create an exact same customized comment box :)

@tanmay

Check if you have paste the CSS styles in step#7 correctly

@prime
congtax pal! :d










Parigyan Tamuly on Jun 26, 2012, 7:35:00 AM said... #

it is showing an error

parthasarathi108 on Jun 30, 2012, 2:30:00 PM said... #

Dear sir it is not working. In fact the original comment tag is not working in my present blog. I have tried lots of templates but could not succeed. In my dummy blog it appears. Once i have converted my blog into three coloumn and from then onwards the comment tag is not visible. If you kindly help me out than i shall remain grateful to you. Thanks. My blog url is http://parthasarathi108.blogspot.com

Poras Gupta on Jul 4, 2012, 12:56:00 AM said... #

Thanks :)

Added to facebook comments

Looking so good on my blog after making some minor changes to CSS code and image.

Jay Ryan M. on Jul 6, 2012, 4:23:00 PM said... #

How to disable anonymous comments but allow people to still write in "Name/URL"? That feature is missing in Blogger.

JayRyan'sBlog

Tanmay Kapse on Jul 9, 2012, 10:38:00 PM said... #

Plz help i am getting this error :

"b:includable" must be terminated by the matching end-tag "".

Tanmay Kapse on Jul 10, 2012, 7:47:00 AM said... #

Please reply :>

Hemant Verma on Jul 11, 2012, 6:20:00 PM said... #
This comment has been removed by the author.
Hemant Verma on Jul 11, 2012, 6:35:00 PM said... #

NIce I like it.

Face Blog

Tanmay Kapse on Jul 13, 2012, 3:48:00 PM said... #

Plzz i request u bro :*(

Just coz i am an indian it doesnt mean u start ignoring us

addingsense on Jul 24, 2012, 12:17:00 AM said... #

it is not working in my blog...i lost 2 hours for this. is there any better way to do it

ocularconcepts on Jul 31, 2012, 6:32:00 PM said... #

Wonderful blog & good post.Its really helpful for me, awaiting for more new post. Keep Blogging!

cleveland web development

Hamxa Wasim on Aug 2, 2012, 9:08:00 PM said... #

Ohkay Thanks Mustafa!
Blogging Tips

balen on Aug 3, 2012, 9:58:00 PM said... #

please how can i create a comment box like your comment box

adel salam on Aug 3, 2012, 10:05:00 PM said... #

hi every body ...
i am very interesting with your comment box .
how can i create this for my website
plz help me

Jignesh Dawda on Aug 3, 2012, 10:49:00 PM said... #

thanks.....................


FOR entertainment follow :http://laugher28.blogspot.in/

balen on Aug 17, 2012, 10:02:00 PM said... #

plz

H4ck3rJutt on Aug 19, 2012, 5:54:00 AM said... #

h3. tag is not SEO friendly muhammad h2. tag use nahi ho rha ,,kia kru iska?

Shahbaz Khan on Aug 20, 2012, 7:51:00 AM said... #

Plz help i am getting this error :

"b:includable" must be terminated by the matching end-tag "".

Senthil Kumar on Aug 24, 2012, 10:07:00 AM said... #


learn video marketing

http://www.guntalielman.com/learnvideomarketing


Senthil Kumar on Aug 24, 2012, 10:08:00 AM said... #

learn video marketing: http://www.guntalielman.com/learnvideomarketing

Senthil Kumar on Aug 24, 2012, 10:10:00 AM said... #

learn video marketing


my URL is: http://www.guntalielman.com/learnvideomarketing



pandora charms on Sep 4, 2012, 1:10:00 PM said... #

"learn video marketing
http://www.guntalielman.com/learnvideomarketing" thank you, i like this

pandora charms

Mohammad Tayyab on Sep 6, 2012, 7:46:00 PM said... #

Thanks a lot for this article.. Dear i apply this on my blogspot but some problem is coming in my blogspot and not working 100%,
Kindly visit my blog(www.creativitymindideas.blogspot.com) and click on any post title and come in the bottom of page then you see problem box "Click here to add comment" is going out and text is on side. plz tell me how can i fix that problem.

shaswat shah on Sep 7, 2012, 1:02:00 AM said... #

didn't worked :( please help www.dstuffs.co.cc

Zahid Ali Raja on Sep 7, 2012, 1:56:00 AM said... #

I made My Site Like yours but i have some problems in the comment sections :(

regards
http://myblogginglab.blogspot.com

Kishore Mohan on Sep 10, 2012, 11:08:00 AM said... #

Well im a trader how can i can make blogspot for all new traders and investers...can i have the blogspot for stock queries from new persons how can they add my link because im forex tarder that makes easy to invest on online and get share money soon....
Online forex trading
http://www.forexbulls.com

baber Siddiqui on Oct 1, 2012, 8:37:00 PM said... #

Can YOu Add This To my Blog ??? Email Me IF YOu Can... Plzzz

Usman on Oct 10, 2012, 1:32:00 AM said... #

All tools you need for running a business. New Tools.

Buy Facebook Likes on Oct 12, 2012, 8:20:00 PM said... #

By making your tweets interesting, you make our job easier by leaps and bounds. We ensure a steady stream of Twitter followers on your account in a specified period of time. Most people, who aim to increase their Twitter fan following, buy followers from companies or sellers. You can buy Twitter followers from us, but we assure you they are real people with real Twitter profiles. The real followers will not only 'follow' you on Twitter, they will comment on your tweets and interact with you. Avail our services and see the earnings go up like never before.

buy twitter followers

Vinay Sahu on Oct 18, 2012, 1:07:00 PM said... #

I was looking for something like this for sometime ..

I actuallly want to use Disqus for commenting .. will try .. if expand-collapse style would be possible even while using discus ..


Mandy Sheen

Blueblock on Oct 21, 2012, 4:48:00 AM said... #

thanks for this post, how do I get this into the container, it seem to only sit at the bottom without getting in like yours, u can have a look by http://blueblockng.blogspot.com/2012/10/stolen-oil-stolen-revenue_8538.html

Hari kesh on Oct 24, 2012, 10:02:00 PM said... #

its not working for me i am using chromgt template
can u plzzzz help me out wht to do

Pritish Roy on Oct 25, 2012, 5:10:00 PM said... #

It shows that ; is missing. I am using blogger simple template. Please tell me how can i solve the problem. Here is blog http://freelancingtutorials.blogspot.com/

Mohammed Yaqoob on Oct 25, 2012, 7:15:00 PM said... #

Thank you very much Mohammed Bro.
Yaqoob Zone

DigiclayInfotech on Oct 27, 2012, 5:40:00 PM said... #

Thanks Mustafa!
nice blog & very good post.Its really helpful for me,

Nixon ok on Oct 29, 2012, 3:23:00 PM said... #
This comment has been removed by the author.
Nixon ok on Oct 29, 2012, 3:27:00 PM said... #

Hello,i used your site too many times and it helped me so much that i'm here to say thanks. now,I'm stuck with back-links, i am building so many back-links these days and Google still saying i have 0 back-links!Can you help me with that , please try to help me.

This is my website , Download latest bluray hd movies and music videos in 720p and 1080p from mediafire and torrents free

Resham Panth on Nov 4, 2012, 10:37:00 AM said... #

Tank you soo much admin!! just love your blog :)
Check my site www.theepiblogs.blogspot.com and tell me if i can improve it :)

Resham Panth on Nov 9, 2012, 5:28:00 PM said... #

hey mohammad thnk you so much for all your helps but this time your code dint work out for me. it works well for old posts but nt for the new ones.
the comment box doesnt expand on clicking.. plz help, m loosing my valuable comments...

Resham Panth on Nov 9, 2012, 5:52:00 PM said... #

my old links- http://theepiblogs.blogspot.in/2012/11/best-android-smart-phone-rs10000-rs.html

my new link- http://theepiblogs.blogspot.in/2012/11/i-am-alive-game.html

the comment box doesnt work in my new posts.. plz help

Vivek on Nov 10, 2012, 2:05:00 PM said... #

It didn't worked properly.. but now comment form for the post "Next Android OS after Jelly Bean" is not showing....
pls check and find a solution to fix it.

thanks

instacommerce on Nov 12, 2012, 11:55:00 AM said... #

ohh Wow you have amazing blog. I congratulate for this


Website design

android-xtreme-apk on Nov 15, 2012, 10:08:00 PM said... #

Not working on my blog.

http://android-xtreme-apk.blogspot.com/

Akshat Gupta on Nov 16, 2012, 6:57:00 PM said... #

itz not working for my site:

www.coizome.blogspot.com
please check it out

Rahul Sethi on Nov 18, 2012, 4:54:00 PM said... #

Brother, please update this. The image link that is : http://mybloggertricks.googlecode.com/files/comment-boxbg.png

showing error 404 and not working in script..
So please update/reupload the image...

thanks
India Education News

Yahia Bouhlel on Dec 8, 2012, 7:49:00 PM said... #
This comment has been removed by the author.
Yahia Bouhlel on Dec 8, 2012, 7:50:00 PM said... #


hello musTafa !! It Can Be ":includable id='comment-form' var='post
" Doesn't exist In my HTML CODE
?.. Becouse I Did'not Found IT !! HELP mE pLEASE BROTHER . thank You ♥

Notice: my Blog : http://gamiinghero.blogspot.com/

Rakesh Sankaliya on Dec 12, 2012, 6:59:00 PM said... #

Not Working Man ! I NEED Your Help. !

I did all steps , then The Box Of Click Here To Add Comeent Come , But if any one click on it then It is not Working ! Link Is not working i mean ! Please help Fast ! Advance THANKS !

mounika on Dec 24, 2012, 8:15:00 AM said... #

Hi i am using iframe full height in my blog.
Used CSS is:
#iframe {
height: 100%;
width: 100%;
display: block;
border:0;
margin:0;
padding:0;
}

and Javascript is:
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js'/>
<script>

var height = window.innerHeight;

$undefineddocument).readyundefined functionundefined){

$undefined&#39;iframe&#39;).cssundefined&#39;height&#39;, height)

} );

</script>

and HTML is:
<iframe id="iframe" src="http://mybloggertricks.com"></iframe>

It shows full height perfectly in all browsers without IE, how to get full height in IE. Please help me in this.

see that blog here:
http://new-temp.blogspot.com/2012/12/my-blogger-tricks.html

mounika on Dec 24, 2012, 8:28:00 PM said... #

I had tested this in Dreamviewer with the same above attributes it's working fine in IE also. But only in blogger it's not working in only IE browser. Please help me anybody on this problem Please Help

Muhammad Waqas on Dec 25, 2012, 10:15:00 AM said... #

@Mohammad Mustafa Ahmedzai
I applied all steps, but the trigger button's background is transparent.
Please tell me how to solve it.
My Blog

Umais Bin Sajjad on Jan 2, 2013, 1:05:00 PM said... #

The above image is not hosted.
Replace it with this one:
http://4.bp.blogspot.com/-w6rbdy4LCtI/UKdcV7jX1aI/AAAAAAAAIAw/ekWT8oI7JZw/s1600/comment-boxbg.png


My Blog ••• Web Developer / Designer

crazygrape on Jan 8, 2013, 8:15:00 PM said... #

Did not work

Ahsan Arshad on Jan 10, 2013, 2:33:00 AM said... #
This comment has been removed by the author.
Ahsan Arshad on Jan 10, 2013, 2:35:00 AM said... #

Asalam-o-Alaikum!

i want to ask that in my blog, there are extra options present below comment box like "Create a link","Subscribe to: Post Comments (Atom)" and other also... please brother help me ! how can i remove these. . .!
my blog is : http://itnewscorner4u.blogspot.com

Noman khan on Jan 23, 2013, 2:22:00 AM said... #

Muhammad Please help i can't explain my comment box problem by typing just simply see this pic then you ill get

http://lh3.googleusercontent.com/-Qqqd63GpOpU/UP8CiouJz5I/AAAAAAAAADI/2ct78DBYDuk/s912/Capture.PNG

when some continue typing without pressing enter for next line then this happens??????

Kader Loco on Jan 30, 2013, 10:10:00 AM said... #

It's not hiding my comment box. the comment box is already there when the page loads, and when the button is clicked, it's still there. nothing happens.

Ghulam Mhuhddeen on Feb 5, 2013, 4:22:00 AM said... #

Uniblue PowerSuite Pro 2013 Thanks dude, nice Post .good admin Thnaxxx

Deepika Mehta on Feb 5, 2013, 4:54:00 PM said... #

Hi, you explained the topic very well. The contents has provided meaningful information thanks for sharing info
Free Premium Wordpress Themes

Fahad Pervez on Feb 11, 2013, 11:39:00 PM said... #

@Mohammad Mustafa Ahmedzai


THANKS.. :)

umair ali on Feb 18, 2013, 1:55:00 PM said... #

salam its not working ap nay kaha ke ye ap ke jesa ho jae ga likin ye to jahan par pehlay se comment hai wahan to kuch show hi nai ho raha plz help to solve this

হাসিবুল হাসান on Mar 4, 2013, 10:37:00 PM said... #
This comment has been removed by the author.
হাসিবুল হাসান on Mar 4, 2013, 10:42:00 PM said... #

Sir, my name is Hasibul Hasan.
Sir, how can i add multiple code box inside blogger post? like your site.

Pingal Singh on Mar 15, 2013, 1:52:00 PM said... #

I added it but when i expand it, it expands and collapse and then expand. If i collapse it, it's collapsed, expanded and then collapsed. Why this? www.gameguidist.com

santosh kumar on Mar 16, 2013, 12:04:00 PM said... #

http://honney2bunny.blogspot.in/p/home-page.html

shoaib khan on Mar 18, 2013, 6:12:00 PM said... #

It does not work

Sundher Kingmaker on Apr 3, 2013, 7:54:00 AM said... #

If the above coding is not working visit here http://www.sundhercse.com/how-to-add-expandcollapse-blogger-comment-box/

Sundher Kingmaker on Apr 3, 2013, 7:55:00 AM said... #

@shoaib khan
If the above coding is not working visit here http://www.sundhercse.com/how-to-add-expandcollapse-blogger-comment-box/

Sundher Kingmaker on Apr 3, 2013, 8:00:00 AM said... #

@umair aliIf the above coding is not working visit here http://www.sundhercse.com/how-to-add-expandcollapse-blogger-comment-box/

Sundher Kingmaker on Apr 3, 2013, 8:00:00 AM said... #

@Kader LocoIf the above coding is not working visit here http://www.sundhercse.com/how-to-add-expandcollapse-blogger-comment-box/

Sundher Kingmaker on Apr 3, 2013, 8:00:00 AM said... #

@Noman khanIf the above coding is not working visit here http://www.sundhercse.com/how-to-add-expandcollapse-blogger-comment-box/

Sundher Kingmaker on Apr 3, 2013, 8:01:00 AM said... #

@crazygrapeIf the above coding is not working visit here http://www.sundhercse.com/how-to-add-expandcollapse-blogger-comment-box/

Sundher Kingmaker on Apr 3, 2013, 8:01:00 AM said... #

@Umais Bin SajjadIf the above coding is not working visit here http://www.sundhercse.com/how-to-add-expandcollapse-blogger-comment-box/

Sundher Kingmaker on Apr 3, 2013, 8:02:00 AM said... #

@Rahul SethiIf the above coding is not working visit here http://www.sundhercse.com/how-to-add-expandcollapse-blogger-comment-box/

Sundher Kingmaker on Apr 3, 2013, 8:02:00 AM said... #

@android-xtreme-apkIf the above coding is not working visit here http://www.sundhercse.com/how-to-add-expandcollapse-blogger-comment-box/

Sundher Kingmaker on Apr 3, 2013, 8:03:00 AM said... #

@VivekIf the above coding is not working visit here http://www.sundhercse.com/how-to-add-expandcollapse-blogger-comment-box/

Sundher Kingmaker on Apr 3, 2013, 8:03:00 AM said... #

@Hari keshIf the above coding is not working visit here http://www.sundhercse.com/how-to-add-expandcollapse-blogger-comment-box/

Sundher Kingmaker on Apr 3, 2013, 8:03:00 AM said... #

@shaswat shahIf the above coding is not working visit here http://www.sundhercse.com/how-to-add-expandcollapse-blogger-comment-box/

Zeeshan Ahmed on Apr 6, 2013, 11:37:00 PM said... #

Its not working on my blog

http://thetrickslab.com

GamingTracks on Apr 16, 2013, 7:53:00 AM said... #

Not Working in my blog: http://gamingtracks.blogspot.in/

Hemant Kumar on Apr 24, 2013, 1:55:00 PM said... #

Brother it is not working in my blog please help !!!!

I have tried it!!
it looks nice but not working
Help!!
http://amazinghemant.blogspot.in/

Mubi Rana on Apr 29, 2013, 10:17:00 AM said... #

@Prime Aque
Hy Aque....Buddy Can You Please Tell How You Did That ? or can you give me link from i can also add facebook expand/collapse comment box...I've added Simple Facebook Comment Box for My Site.But i want it to be collapsed,only open when ever a user clicks on it....I Can add this expand/collapse blogger comment box..but the problem is i dont want to use blogger comments.
I've searched on Google But couldnt found any expand/collapse facebook comment box...

Nicole Lindsay on May 1, 2013, 12:13:00 AM said... #

I need help with the new blogger template. I can't find the comments, in the HTML code.

danyal asad on May 18, 2013, 2:34:00 PM said... #
This comment has been removed by the author.
danyal asad on May 18, 2013, 2:35:00 PM said... #

Mustafa you are my ideal.
plz visit my little movies blog http://440kajhatka.blogspot.com/

Click Here To add Comment

Confused? Feel free to ask

Your feedback is always appreciated. We will try to reply to your queries as soon as time allows.

Note:
1. To add HTML CODE in comments then please use our HTML Encoder
2. You can always Test the tutorial on our HTML Editor
3. No cheesy/spam Comments tolerated Spam comments will be deleted immediately upon our review.

Regards,
Mohammad

Support Us

If our Tutorials have helped you a little, then kindly spread our voice using the badge below:-

or try a Beautiful Banner


Widgets

 
  • MBT Icons and buttons

    Icons and Buttons

    Our resources have been successfully downloaded over 10K times and found almost every where. Get yours!

  • choosing webhost for a blog

    Why HostGator?

    Learn Why we chose HostGator as our Web Host and find discount coupons to kick start your blog today!

  • SEO Settings for blogger

    ALL IN ONE SEO PACK 2012

    Learn every single SEO tip that will boost your blog's ranking and organic traffic. We got them all!

  • Blogger widgets and plugins

    Visit MBT's Blogger LAB

    Why not take a tour of all great Blogger widgets published so far? You Name it we have it!

  • become a six figure blogger!

    Become a SIX FIGURE BLOGGER

    Learn what it takes to become a successful entrepreneur and build a living online!

About The Author

Hi! I am Mohammad, a certified SEO Consultant, Pro Blogger, Computer Engineer and an addicted Web Developer. Read More..

Recipes

SEO Affiliate Marketing Social Media

Make Money Online Web hosting

Blogging Tips Web Designing

Plugins and Widgets Blogging Ethics

Recent Comments

Popular Series

Powered by:

My Blogger Tricks © 2013. All Rights Reserved | Contact |