How to disable mobile navigation arrows?

Is there a way to disable the navigation arrows that appear at the bottom of mobile screens by default?

I could do it via CSS with “display: none”, but I’d need the class name for the element. I can’t find it anywhere.

Apologies if this has already been raised, I couldn’t find an existing discussion anywhere. Thanks

1 Like

Just found the answer by poking around in the CSS files. If anyone else has this problem, you can hide or modify the footer navigation arrows by putting this code in

Admin > Customise > Themes > Click your theme > Edit CSS/HTML, and paste this at the end:

.footer-nav {
    display: none;
}
3 Likes