Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #207854

    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

    #208379

    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

    #208489

    f’n perfect! once again you guys rule – how do you guys remain so patient? – ha! much thanks!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Enfold portfolio / post nav not showing’ is closed to new replies.