interesting!
maybe you can manage to code this!
you just need to find out the body classes you need:
https://laytheme.com/documentation/custom-css-styling.html#css-based-on-current-page
[image: 1698337848587-screenshot-2023-10-26-at-13.30.41-resized.png]
look at this example
this has the class slug-imagehover-test
so i use the css body.slug-imagehover-test
[image: 1698337926373-screenshot-2023-10-26-at-13.31.52-resized.png]
try to learn how to use the chrome inspector. i inspect the html and i see the <nav has the class primary
so i do:
body.slug-imagehover-test nav.primary{
display: none!important;
}
to hide that menu on that page
this way you can hide or show menus depending on which page you are on
good luck