wordpress help

joescrivens

Suspended / Banned
Messages
15,052
Name
Joe
Edit My Images
Yes
can anyone tell me how to remove the menu bar from a specific page?
 
Last edited:
Dont know but FWIW I like both and like the idea. Would it not be best to have 2 separate sites???

Do you do studio type shots (at your studio or in homes with backdrop) as the pics only seem to show outdoor stuff.
 
Dont know but FWIW I like both and like the idea. Would it not be best to have 2 separate sites???

Do you do studio type shots (at your studio or in homes with backdrop) as the pics only seem to show outdoor stuff.

I scraped the idea as I realized it was impossible

Right now i do have two sites but i'm finding SEO optimization on both to be a challenege so am rethinking everything

no i dont do studio backdrop stuff - it's not my bag
 
With custom header.php and custom page template files
 
Last edited:
A bit of CSS will also do it.

Just make sure the selector includes the specific page id.

For example, to remove the navigation bar for the pricing page on http://www.onewhitelily.co.uk/pricing/ you would use the following css.

body.page-id-73 div#navigation-container {
display: none;
}
 
Forgive me if I'm wrong, but won't

display: none;

simply hide the navigation container on that page? That is, it will still be there, just not visible to visitors (but still visible to search engines). I only mention that because Joe mentioned SEO as a concern.
 
Back
Top