Removing Menu Items and Tagline for Specific pages

  • Unknown's avatar

    I need to remove the Menu items, Header, Tagline to create a landing page for email marketing on specific pages only not the whole site.

    so the only option is to enter email details.

    I am on wordpress.com setup so limited on what I can do.

    I am using theme twenty-twelve and anyway to do this in CSS

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi swescoat,

    If you want to remove an element from a specific page, you can do something like this:

    .page-id-1328 h2.site-description {
        visibility: hidden;
    }

    This will hide the tagline on the Pricing page.

    If you want to hide a particular Menu item, you can use:

    li.menu-item-267 {
        display: none;
    }

    This should give you an idea of what you can do — good luck!

  • The topic ‘Removing Menu Items and Tagline for Specific pages’ is closed to new replies.