Hi, how can I disable the arrows that appear on the left and right side on portfolio posts, navigating to previous and next posts respectively?
Thanks, Richard
Hi Richard,
Adding the following custom CSS (either to Quick CSS or to the custom.css file) might do the trick:
.avia-post-nav {display: none;}
The above CSS will most likely disable all the ‘next post’ arrows… including non-portfolio posts. In case you want to disable the arrows only on portfolio posts, then you might want to try the following CSS:
.single-portfolio .avia-post-nav {display: none;}
Using the above code should keep the arrows intact for non-portfolio posts… regular blog posts for example, should still display the arrows.
Hope this helps :)
Kind regards,
Ralph
Hey!
Please also see – http://kriesi.at/documentation/enfold/remove-post-navigation-for-a-post-type/
@ralph12 thanks :)
Regards,
Yigit
You’re welcome, Yigit :)
Great, thank you both!