Tagged: Enfold portfolio, post nav
Hi, on some of my portfolio pages the side ‘next’ ‘previous’ transparent tabs are not showing (using color section with clear PNG and full-width photo). I’ve tried to fix the z-index but I don’t think I’m editing the correct CSS:
#top .avia-post-nav {z-index: 1500 !important;}
Here’s a sample of the problem:
http://mediumstudio.com/wp/?portfolio=travessia-urban-winery
Works here (using same elements):
http://mediumstudio.com/wp/?portfolio=cork-wine-and-tapas
much thanks
Hi mediumstudio!
Yes, Kriesi deactivates the post navigation on pages with fullwidth sliders or elements to avoid that the slider buttons overlap the post navigation and vice versa. If you want to activate the navigation on all pages simply insert following code at the bottom of functions.php. You can also place it in your child theme functions.php
add_filter('avia_post_nav_settings','avia_remove_fullwidth_slider_check', 10, 1);
function avia_remove_fullwidth_slider_check($settings)
{
$settings['is_fullwidth'] = false;
return $settings;
}
Best regards,
Peter
f’n perfect! once again you guys rule – how do you guys remain so patient? – ha! much thanks!