Saturday, August 8, 2009

How To Make Scrolling Blogger Blog Roll

It is a very simple setup! Just follow my steps below.

1: Go to Edit HTML tab. Make sure you BACKUP your template BEFORE you do anything.

2: Make sure the Expand Widget Templates is checked.

3: Find LinkList with the title Blog Roll or any title you've set.
Note: Don't mind the number after the word LinkList. Numbers may varry depending on your blogger setup!

<b:widget id='LinkList1' locked='false' title='Blog Roll' type='LinkList'>
<b:includable id='main'>

<b:if cond='data:title'><h2><data:title/></h2></b:if>
<div class='widget-content'>

<ul>
<b:loop values='data:links' var='link'>
<li><a expr:href='data:link.target'><data:link.name/></a></li>
</b:loop>
</ul>
<b:include name='quickedit'/>
</div>
</b:includable>
</b:widget>

4th: Insert the BLUE TAGS.
Note: You may edit the values of the GREEN TAGS.

<b:widget id='LinkList1' locked='false' title='Blog Roll' type='LinkList'>
<b:includable id='main'>

<b:if cond='data:title'><h2><data:title/></h2></b:if>
<div class='widget-content'>

<div class='blog-list-container' expr:id='data:widget.instanceId + "_container"' style='overflow: auto; display: block; overflow-x: no; overflow-y: scroll; height: 300px; width: 160px;'>
<ul>
<b:loop values='data:links' var='link'>
<li><a expr:href='data:link.target'><data:link.name/></a></li>
</b:loop>
</ul>
<b:include name='quickedit'/>
</div> </div>
</b:includable>
</b:widget>

5: SAVE!!! And finish.

No comments:

Post a Comment