I want to remove the Nav Menu on this page only (id: 3362), but not the logo: http://nutsandboltspress.com/product/super-home-businesses-for-women-90-proven-ideas/
Changing the Nav Menu text color to white for that page would also be OK.
Mike.
Hi mhiller!
Thank you for using our theme.
in custom.css or Enfold->Styling->Quick CSS field put the following:
.postid-3362 .main_menu {
display: none !important;
}
Cheers!
Günter
Works great with page id 3062, but not on the Woo cart page (id 2505): http://nutsandboltspress.com/cart/
.postid-2505 .main_menu {
display: none !important;
}
Is there is quick fix for the cart page in CSS or because it is the “cart” would it be something else (PHP?)?
Thanks!! Mike.
Hi!
Thanks for coming back.
You have to replace the ID with .page-id-2505 or .woocommerce-cart like:
.page-id-2505 .main_menu {
display: none !important;
}
or
.woocommerce-cart .main_menu {
display: none !important;
}
Cheers!
Günter
Oh . . . that did it! Thanks, Mike.