Hide Menu Bar

I want to hide the menu bar at the top of some pages. How do I do it?

The theme is Spakling.

Hey there

Please provide a link to the page where you want to hide it

The page link that I want to hide the top menu bar is helloportuguese
com
br
/
como-dar-aulas-de-portugues-para-estrangeiros/

Hi,

You can hide it with this css code, but you need to know your page id for that page. Remove footer part if you need it.

.page.page-id-2667 #footer-area,.page.page-id-2667 #masthead
{
display:none
}

Best regards,
MarxVeix

Hey there

You can use this short version of the code:

header#masthead {
display: none;
}