Posts

Showing posts from December, 2014

How to remove fixed widgets in blogger

Image
Do you want to remove the attribution widget or the navigation bar from your blogger blog the you have come to the right place.These two widgets are somewhat irritating and many bloggers want to remove them.There are 2 ways by which you can do so.

How to add facebook like button in every blog post

Image
Facebook is the most popular social networking site where everyone can post personal views and people respond to the posts by liking or commenting on them.Now if you want to get responses of your blog visitors you can either use a third-party polling stars or you can simply add a facebook like button in your every blog post.The later option is worth a shot because you can receive responses from the users of largest social networking site.Here are a few steps after following which you will have fb like button...

How to add contact form to Blogger Blog

Image
All of the bloggers need a contact form so that their visitors can connect with them.Now there are various ways to do this but in this post i am gonna show only two ways. Google forms Blogger Contact form Widget

Show blogger widgets on specific pages/posts

Image
This has been the most asked questions about blogger.There are so many blogs that give its answer but none of them has worked for me and i think not for most of u people also.I tried a lot and finally come up with a very permanent and sleek option that we can choose to show a blogger widget on specific page/post.Try this out and tell me whether it was helpful or not. Firstly, log into your blogger account, Go to layout tab and add the widget in the usual manner.Drag the widget where you want it to be. Now, go to template tab and click on "Edit HTML" option. There is a option of "JUmp to Widget".Select it and and select your widget from the drop down menu. In the widget code, there will be something like this <widget id="Something"......>.....</widget> Now you need that id which is in the semi-colons.Copy that id and paste the below code just above your </body> tag <style> #Your-Id{ display:none ; }</style>

HTML Tables

Image
The HTML tables allow web authors to arrange data like text, images, links, other tables, etc. into rows and columns of cells. The HTML tables are created using the <table> tag in which the <tr> tag is used to create table rows and <td> tag is used to create data cells. Example <!DOCTYPE html> <html> <head> <title>HTML Tables</title> </head> <body> <table border="1"> <tr> <td>Row 1, Column 1</td> <td>Row 1, Column 2</td> </tr> <tr> <td>Row 2, Column 1</td> <td>Row 2, Column 2</td> </tr> </table> </body> </html> This will produce following result: Row 1, Column 1 Row 1, Column 2 Row 2, Column 1 Row 2, Column 2 Here border is an attribute of <table> tag and it is used to put a border across all the cells. If you do not need a border then you can use border="0". Table Heading Table heading can be