« See all FAQs for Qamar - AJAX Portfolio WP Theme for Photographers
How can i changing the way items opining in left always ?
edit js/tie-portfolio.js
and search for
if( openDir == 'right'){
dir = '-';
jQuery('#portfolio-content').css({float:"right"});
openDir = 'left';
}
else{
dir = '';
jQuery('#portfolio-content').css({float:"left"});
openDir = 'right';
}
and replace it with
dir = '';
jQuery('#portfolio-content').css({float:"left"});
openDir = 'right';

