Если вопрос актуальный еще (если нет, может кому пригодится): в category_default.php ищешь таблицу: далее меняешь местами строки/столбцы, нужны навыки построения таблицы хтмл Все элементы названы соответсвенно, т.е. image - рисунок, product_link - ссылка на продукт, category_short_description - краткое описание и т.д. Пример ниже - уже струкрута текста под рисунком. Код (PHP): <table class = "jshop"> <?php foreach($this->categories as $k=>$category){?> <?php if ($k%$this->count_category_to_row==0) print "<tr>"; ?> <td class = "jshop_categ" width = "<?php print (100/$this->count_category_to_row)?>%"> <table class = "category"> <tr> <td class="image"> <a href = "<?php print $category->category_link;?>"><img class = "jshop_img" width="180" height="180" src = "<?php print $this->image_category_path;?>/<?php if ($category->category_image) print $category->category_image; else print $this->noimage;?>" alt="<?php print htmlspecialchars($category->name)?>" title="<?php print htmlspecialchars($category->name)?>" /></a> </td> </tr> <tr> <td align="center"> <a class = "product_link" href = "<?php print $category->category_link?>"><?php print $category->name?></a> <p class = "category_short_description"><?php print $category->short_description?></p> </td> </tr> </table> </td> <?php if ($k%$this->count_category_to_row==$this->count_category_to_row-1) print '</tr>'; ?> <?php } ?> <?php if ($k%$this->count_category_to_row!=$this->count_category_to_row-1) print '</tr>'; ?> </table>