Hi again
That needs different approach.
Open ../templates/gk_boutique/html/com_k2/templates/default/item.php
and find this fragment
- Code: Select all
<?php if($this->item->params->get('itemImageGallery') && !empty($this->item->gallery)): ?>
<!-- Item image gallery -->
<a name="itemImageGalleryAnchor" id="itemImageGalleryAnchor"></a>
<div class="itemImageGallery">
<h3><?php echo JText::_('K2_IMAGE_GALLERY'); ?></h3>
<?php echo $this->item->gallery; ?>
</div>
<?php endif; ?>
Cut & paste on into line 229 (just before this line)
- Code: Select all
<?php if($this->item->params->get('itemRating') || ($this->item->params->get('itemDateModified') && intval($this->item->modified)!=0)): ?>
After paste the code, add the following line at the end of the fragment:
- Code: Select all
<div class="clr"></div>
So it should looks like this:
- Code: Select all
<?php if($this->item->params->get('itemImageGallery') && !empty($this->item->gallery)): ?>
<!-- Item image gallery -->
<a name="itemImageGalleryAnchor" id="itemImageGalleryAnchor"></a>
<div class="itemImageGallery">
<h3><?php echo JText::_('K2_IMAGE_GALLERY'); ?></h3>
<?php echo $this->item->gallery; ?>
</div>
<?php endif; ?>
<div class="clr"></div>
I didn't test it, but it should work.
Cheers