Tagged: Portfolio, portfolio ajax
Hello,
when creating a Portfolio and choosing as link opening AJAX, the Portfolio always displays the link upwards but I would like it to display the link downwards. Is there an easy way to do so?
Furthermore, is there a way to control size of the total part that pops up when details are shown (for example make it smaller)?
And is there a way to control the size of the image or even the ratio between picture size and space for text?
Thank you,
Gerke
Hi Gerke,
Could you provide us with a link to the site in question so that we can take a closer look please?
Regards,
Rikard
the website is
Hi!
I’m sorry but this is not possible without major modification on the theme. Please contact codeable: http://kriesi.at/contact/customization
Best regards,
Ismael
Hi,
sorry for the very late response.
I do understand you cannot do major modifications here for me, but is at least the portfolio popping up downwards possible without major modifications?
Thank you,
Gerke
Hi,
Alright. This is possible but you can’t override this modification in a child theme. Edit config-templatebuilder > avia-shortcodes > portfolio.php file. Look for this code around line 396:
$output .= "
<div class='portfolio_preview_container {$container_class}' data-portfolio-id='{$container_id}'>
<div class='ajax_controlls iconfont'>
<a href='#prev' class='ajax_previous' ".av_icon_string('prev')."></a>
<a href='#next' class='ajax_next' ".av_icon_string('next')."></a>
<a class='avia_close' href='#close' ".av_icon_string('close')."></a></div>
<div class='portfolio-details-inner'></div>
</div>
"
Move it above line 545. Place the code above this one:
$output .= "</div>
";
Best regards,
Ismael