@help I added a new Photos page following instructions at www.manton.org/2019/07/2... However, I want to exclude the page from my Menu. How can I do that?
@help I added a new Photos page following instructions at www.manton.org/2019/07/2... However, I want to exclude the page from my Menu. How can I do that?
@Miraz One way to do it is by adding custom CSS:
nav a[href='/photos/'] {
display: none;
}
Another way is by customizing your theme. That's a bit more involved, though.
@sod Thank you. Worked perfectly. I didn't realise that was possible in CSS. I'd been looking through the theme files for a way to do it. 😀