Hello,
Please see the attached link for image to reference I made some changes in my gallery awhile ago and it affected the ‘next’ and ‘previous’ scrolling tabs on the left and right of the page and I can’t seem to get them back.
Please help
thank you!
Colleen
Hey Colferg,
Please provide a link to your page so we can look into this issue further. Preferably a link to the blog post.
Best regards,
Jordan Shannon
are you using a slider on top?
it is to prevent prev and back buttons colide with the prev and next buttons of category navigation:
if so:
This to functions.php of your child-theme :
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;
}