Tag Archives: blogsome

Blogsome Categories in Drop Down Menu

blogsome category in drop-down menuHow to create Blogsome.com blog  Categories in a Drop Down Menu

1. After login -> Manage -> Files -> Main Index
2. Find the following code -> {list_cats optionall=’0′ all=’All’ sort_column=’name’}
3. Delete and replace it with this code:
<li><form name="category" action="" method="POST" style="margin: 0px; padding: 0px;">
{blogsome_dropdown_cats optionall='0' all='All' sort_column='name'}
<input size="40" type="button" value="Go" onclick="window.location = (document.category.cat.options[document.category.cat.selectedIndex].value);" /></form></li>

4. Click Update Tempalte to save the change. Done.

Blogsome Archive in Drop-down Menu Style

blogsome archive in drop-down styleHere is how to create a drop-down archive menu for Blogsome powered blog (if you still like your Blogsome.com;s blog)

1. After login -> Manage -> Files -> Main Index
2. Find the following code: {get_archives type=’monthly’}
3. Delete and replace it with this code:

<li><form name="archiveform" action="" method="post" style="margin: 0px; padding: 0px;">
<select id="archive_chrono">
<option value=''>Select Month to View</option>
{get_archives type='monthly' format='option' show_post_count='1'}
</select>
<input size="40" type="button" value="Go" onclick="window.location = (document.forms.archiveform.archive_chrono[document.forms.archiveform.archive_chrono.selectedIndex].value);" />
</form></li>

4. Click Update Template to save. Done.