Page 1 of 1

I want to change Description position with gallery position

Posted: 04 Aug 2016, 01:00
by amir_csj
how can I change Description position with gallery position?

http://imgur.com/a/XOoxb

Re: I want to change Description position with gallery position

Posted: 07 Aug 2016, 17:16
by Jan
Hi, see:
components\com_phocagallery\views\category\tmpl\default.php

Code: Select all

// Category Description
if (isset($this->category->description) && $this->category->description != '' ) {
    echo '<div class="pg-cv-desc">'. JHTML::_('content.prepare', $this->category->description) .'</div>'. "\n";
} 
This code, you can move to other place, directly in the default.php file or other default_ ... files.

Jan