Forums

Different themes and menus on same website (2 posts)

  1. ChristiMc
    Member
    Posted 8 months ago #

    I have a website that needs a "corporate" section and a "kids" section and they will have different menus and styles for each.

    I see part of my answer here: http://wordpress.org/support/topic/multiple-themes-one-site?replies=14.

    My question is can I have both a different style AND menu for two different sections of my website?

    Anyone done this before? If so, any help you can provide is MOST appreciated!

    Christi

  2. Big Bagel
    Member
    Posted 7 months ago #

    If you're still looking for this...

    If you want the two sections to be completely separate, you could look into enabling multisite:

    http://codex.wordpress.org/Create_A_Network

    If you just want a different style sheet and menu in certain sections, you could have different CSS files and custom menus that are conditionally loaded. For example:

    if ( is_singular() and is_category( 9, 27 ) ) {
        /* Alternate style sheet or custom nav menu */
    } else {
        /* Default style sheet or custom nav menu */
    }

Reply

You must log in to post.

About this Topic