I need to remove the navigation bar from specific pages only. I am fairly new to wordpress but i managed to create a child theme for the responsive theme, which i am using. I successfully removed it from the homepage , with...
.home .menu {
display: none;
}
However i'm struggling to remove it from other specific pages. Is there a way I can do it similar to the way that I did the homepage in my child theme, by using page ID's? (Instead of editing the php files?)
Thankyou!