Sunday, September 27, 2009

How To Add Table To Blog Post

How to include table in blog post?
How to add boxes for text in blog post?

AB
CD

Here's the example of the code used to create a table with 2 rows and 2 columns.

<table align="center" border="1" cellpadding="5" cellspacing="1" width="400"><tbody><tr><td>A</td><td>B</td></tr><tr><td>C</td><td>D</td></tr></tbody></table>

As you can see, <tr> is the tag to begin a row, and the tag ends with </tr>.

While in between <tr> and </tr>, we have <td> to indicate a particular column in the row, and it ends with </td>. In between that, you can type the text you want. The example given is "A".

You can have as many <td> your text </td> you want in between the <tr> and </tr> tag.

Once you are done with a particular row, you can start another row my using <tr> again. And the process continues.

You can also modify the values of table align, border, cell padding and cell spacing. Changing the values will show different table styles. Try it out.

For the width, you can either use the pixel value (example "400") or the percentage (example "90%") to suite your preference.

Here's an example of another table with these values:

table align="center" border="10" cellpadding="10" cellspacing="10" width="90%"

And you might also want the values to be in the center. So just add <center>A</center> to the text.

A
B
C
D

Feel free to try it. Enjoy!

Monday, September 14, 2009

How To Set Password for Blogger Post

How to make blogger post private?
How to encrypt blogger post?
How to create blog post with password?

It's basically called text encryption and decryption. JavaScript is used to perform this function.

To learn how, please proceed to http://www.vincentcheung.ca/jsencryption/instructions.html.

Enjoy! =)

***UPDATE 11/8/2010***: A thorough tutorial on setting password for blog posts can be found at our LATEST TUTORIAL GUIDE. Check it out.

Wednesday, September 2, 2009

How To Hide Blogs on Blogger Profile

How to hide blogs you don't want to show on your Blogger profile?
How to hide but not delete blogs on Blogger profile?
How to remove blogs on Blogger profile?

If you just want to show certain blogs on your Blogger profile, you can hide the rest. For example, your test blogs - not necessary to show it on your Blogger profile.

blogger hide blogs

Dashboard > Edit Profile

Then click on Select blogs to display under Privacy Section.

After that, select and tick which blogs to display on your Blogger profile.

Save settings and that's it! Enjoy!

Related Posts Plugin for WordPress, Blogger...
Follow Me on Twitter