Styled Blog List #1

Here is the sample of the styled blog list with customized left sidebar. Build amazing styled blog lists with Scalia's top-notch blog styles!
Create a Country Drop Down in the Frontend of Magento

<?php$_countries= Mage::getResourceModel(‘directory/country_collection’)                                    ->loadData()                                    ->toOptionArray(false) ?><?php if (count($_countries) > 0): ?>    <select name=”country” id=”country”>        <option value=””>– Please Select –</option>        <?php foreach($_countries as…

Category Navigation Listings in Magento

<div id=”leftnav”><?php $helper = $this->helper(‘catalog/category’) ?><?php $categories = $this->getStoreCategories() ?><?php if (count($categories) > 0): ?><ul id=”leftnav-tree” class=”level0″><?php foreach($categories as $category):…

1 12 13 14 53