Thank you for your answer. I’m afraid that I can’t provide you with a URL as I’m developing locally.
I’m trying to modify brick.php to include the introtext below the title.
[PHP]
<h<?php echo $item_heading; ?> class=”brick-title”>
<a class=”mod-articles-category-title <?php echo $item->active; ?>” href=”<?php echo $item->link; ?>”><?php echo trim($item->title); ?></a>
</h<?php echo $item_heading; ?>>
<span class=”brick-description”>
<?php echo $item->introtext; ?>
</span>
[/PHP]
Using the above code kinda works but the formatting is stripped. How can I prevent the removal of the formatting? Changing helper.php doesn’t seem to do anything…