• Resolved williewalters18

    (@williewalters18)


    I only started using wordpress for the first time yesterday so am having a few problems as you can imagine.

    Is it possible to set up a secondary menu on one specific page?

    Here is a link to my site (the pictures aren’t actually the company photos yet..) ; http://sterry-walters.com/

    I am wanting the secondary menu bar but only in the ‘Projects’ page and I want all the sub items to be in that secondary menu.

    Could you please help me with this?

    Thanks,
    William

Viewing 6 replies - 1 through 6 (of 6 total)
  • If you set up a secondary menu you can add this to your custom css box to have it show only on the projects page:

    @media (min-width: 992px) {
        #nav-second ul.sf-menu {
        	display: none;
        }
     .page-id-5 #nav-second ul.sf-menu {
        	display: block;
        }
    }

    Kadence Themes

    Thread Starter williewalters18

    (@williewalters18)

    Is a custom css box something that you have to pay for?

    Thanks

    hannah

    (@hannahritner)

    If you go to appearance > theme options > advanced settings there’s box that allows you to add custom css. Just copy and paste the above code in that.
    Hannah

    Thread Starter williewalters18

    (@williewalters18)

    Perfect cheers!

    Hi there. How can I minimize the size of each ul in secondary menus? THanks!

    hannah

    (@hannahritner)

    Hey,
    Try adding this to your custom css box in theme options:

    #nav-second ul.sf-menu li {
    width: 10%;
    }

    Obviously customize the width how you would like.
    Let me know if this works for you!
    Hannah

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Secondary Menu’ is closed to new replies.