diff --git a/sites/all/modules/views_isotope/views-isotope-filter-block.tpl.php b/sites/all/modules/views_isotope/views-isotope-filter-block.tpl.php
index 4e8304d2f6f31fd299a0355b845619e943b36b17..9fdad95257979ff10fbf390725a699e6e329ed15 100755
--- a/sites/all/modules/views_isotope/views-isotope-filter-block.tpl.php
+++ b/sites/all/modules/views_isotope/views-isotope-filter-block.tpl.php
@@ -8,26 +8,23 @@
 ?>
 
 <div id="isotope-options">
-  <ul id="filters" class="option-set clearfix" data-option-key="filter">
+  <?php 
   
-    <?php foreach ( $rows as $id => $row ): ?>
-      
-      <?php 
-      // remove characters that cause problems with classes
-      // this is also do to the isotope elements
-      $dataoption = trim(strip_tags(strtolower($row)));
-      $dataoption = str_replace(' ', '-', $dataoption);
-      $dataoption = str_replace('/', '-', $dataoption);
-      $dataoption = str_replace('&amp;', '', $dataoption); 
-      ?>
-          
-      <li><a class="filterbutton" data-option-value=".<?php print $dataoption; ?>" href="#filter"><?php print trim($row); ?></a></li>
-
-      
-    <?php endforeach; ?>
+  $items = array();
+  foreach ( $rows as $id => $row ):
+    // remove characters that cause problems with classes
+    // this is also do to the isotope elements
+    $dataoption = trim(strip_tags(strtolower($row)));
+    $dataoption = str_replace(' ', '-', $dataoption);
+    $dataoption = str_replace('/', '-', $dataoption);
+    $dataoption = str_replace('&amp;', '', $dataoption);
+    $dataoption = '.' . $dataoption;
+    
+    $items[] = l(t($row), '', array('attributes' => array('class' => 'filterbutton', 'data-option-value' => $dataoption), 'fragment' => 'filter', 'external' => TRUE));
     
-  </ul>  
+  endforeach; 
+  
+  print theme('item_list', array('items' => $items, 'attributes' => array('id' => 'filters', 'class' => 'option-set clearfix', 'data-option-key' => 'filter') ) );  
+  ?>
+  
 </div>
-
-
-
