Write Post In Wallpaper Related Blog:-
Note:-
Step 1. Make Modification In Blogger Template First:-
Login to Blogger Dashboard. Go to Design / Edit HTML. Click "Expand Widget Templates". Download the full template before making any changes in it (Learn More). Search for following piece of code in blogger template.
.post-title
- Paste the following code just above .post-title.
.post #mytable tr td img
{width:120px;
height:100px;
}
The height and weight of all the images can be changed by changing the red integer values.
Step 2. Use Table In Blogger Post Editor:-
First of all hit New Post in blogger. Add the following code in Edit HTML tab of post editor.
<table align="center" border="0" cellpadding="6" id="mytable">
<tr>
<td><a href="Image 1 URL "><img src="Image 1 URL "/></a></td>
<td><a href="Image 2 URL "><img src="Image 2 URL "/></a></td>
<td><a href="Image 3 URL "><img src="Image 3 URL "/></a></td>
<td><a href="Image 4 URL "><img src="Image 4 URL "/></a></td>
</tr>
<tr>
<td><a href="Image 5 URL "><img src="Image 5 URL "/></a></td>
<td><a href="Image 6 URL "><img src="Image 6 URL "/></a></td>
<td><a href="Image 7 URL "><img src="Image 7 URL "/></a></td>
<td><a href="Image 8 URL "><img src="Image 8 URL "/></a></td>
</tr>
<tr>
<td><a href="Image 9 URL "><img src="Image 9 URL "/></a></td>
<td><a href="Image 10 URL "><img src="Image 10 URL "/></a></td>
<td><a href="Image 11 URL "><img src="Image 11 URL "/></a></td>
<td><a href="Image 12 URL "><img src="Image 12 URL "/></a></td>
</tr>
</table>
This table defines 3 rows with four column as you can see from the above tutorial.
- To increase or decrease the distance between the images simply change callpadding="6" to any desired numeric value.
- Replace all pink parts to corresponding URL of the images.
- Each <tr> defines a table row whereas <td> defines the number of columns within that particular rows. So in the above code it have three <tr> tag means it have 3 rows in a table and each rows have four <td> tag which defines the number of column within that particular row (Learn More).
More article from the same author


No comments:
Post a Comment