{[['
']]}
Add Comment Count to Post Header Titles in Blogger
Posted by Northking
Posted on 2:01 PM
with 19 comments
Labels:
Tricks
HTML Scroll Box
Posted by Northking
Posted on 1:13 PM
with No comments

HTML Scroll Box with Customize Textarea.
Code:
<textarea rows="9" cols="53" onclick="this.focus();this.select()" readonly="readonly">
HTML Scroll Box
</textarea>
Note:
HTML Scroll Box Replace this with your Text
rows="9" cols="53" You can customize Textarea.
HTML,
{[['
']]}
Labels:
HTML
HTML Tables
Posted by Northking
Posted on 12:30 PM
with No comments

Example explained:
Tables are defined with the <table> tag.
Tables are divided into table rows with the <tr> tag.
Table rows are divided into table data
with the <td> tag.
A table row can also be divided into table headings
with the <th> tag.
Code
<table border="1" style="width:100%">
<tr>
<td>Rows No.1</td>
<td>Rows No.2</td>
<td>Rows No.3</td>
</tr>
<tr>
<td>Rows No.4</td>
<td>Rows No.5</td>
<td>Rows No.6</td>
</tr>
</table>
HTML,
{[['
']]}
Labels:
HTML
Facebook Auto Popup Like Box Script for Blogger
Posted by Northking
Posted on 11:09 AM
with No comments
Labels:
Facebook Like Box,
Javascript
Auto Popup Windows Script for Blogger
Posted by Northking
Posted on 10:37 AM
with 1 comment

Just follow below steps for add a popup window in your blogger:
Log in to your Blogger account.
Go to Design > Page Elements.
Click Add a Gadget.
Select HTML/JavaScript widget.
Copy the below code and past it in HTML/java script box.
Code
<script type="text/javascript">
document.body.onclick= function(){
window.open('your web address', 'poppage', 'toolbars=0, scrollbars=1, location=0, statusbars=0, menubars=0, resizable=1, width=650, height=650, left = 300, top = 50');
}</script>
Note:
your web address Replace this with your Web url (web ad
Javascript,
{[['
']]}
Labels:
Javascript