Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #849879

    1. How do you make the “Pricing” text in the menu white at astutemy.com? I tried this, but only the background works:

    .menu-item-23564 {
    background-color: #dd3333 !important;
    font color: white !important;
    }

    .menu-item-23564 a:hover {
    color: #000000 !important;
    }

    2. Also, I hid all the menu items individually at astutemy.com/enroll. I did this, but I think there is a sexier way. I wanted to hide the entire menu itself, but not the complete Navbar as I need the logo to show only.

    .page-id-7999 #menu-item-36022 {
    display: none;
    }

    .page-id-7999 #menu-item-21130 {
    display: none;
    }

    .page-id-7999 #menu-item-34203 {
    display: none;
    }

    .page-id-7999 #menu-item-18154 {
    display: none;
    }

    .page-id-7999 #menu-item-34009 {
    display: none;
    }

    .page-id-7999 #menu-item-9447 {
    display: none;
    }

    .page-id-7999 .x-icon-search {
    display: none;
    }

    .page-id-7999 .menu-item-23564 {
    display: none;
    }

    Many thanks!

    #850204

    Lely
    Moderator

    Hi There,

    Thanks for posting in.

    1.) Please just use color and not font color and then we need to apply it to the link like below:

    .menu-item-23564 a {
        color: #ffffff !important;
    }

    2.) We can access the entire menu by adding the following CSS instead:

    .x-nav-wrap.desktop,
    .x-nav-wrap.mobile {
        display: none;
    }

    Try removing your added CSS and use above instead.

    Hope this helps.

    #852675

    genius, just genius…can you explain the “a” as that is the part I missed also?

    #852911

    Jade
    Moderator

    That is correct Eric.