Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #158768
    timmyjohnboy
    Participant

    I can’t for the life of me find out where in the color options or the CSS to find the colors in the top main navigation menu for the “Create Pro” theme. Any tips?

    #158783
    Sakin
    Keymaster

    @timmyjohnboy: Will need to talked to development team about the color of the menu. I also didn’t find it and if it’s missing will add soon in next version update. Thanks.

    For now, you can change the color code in the following css and then add it in “Appearance = Customize => Additional CSS” box:

    /* Menu Text Color */
    .main-navigation a {
        color: #dbdada;
    }
    /* Menu Hover Text Color */
    .create-menu a:hover,
    .create-menu a:focus {
        color: #e7b507;
    }
    
    /* Menu Active Color */
    .main-navigation .current_page_item > a,
    .main-navigation .current-menu-item > a,
    .main-navigation .current_page_ancestor > a {
        color: #cfa205;
    }
    #158849
    timmyjohnboy
    Participant

    That was very helpful, thank you! The only part I’m missing now is when the site is mobile, the menu button at the top is still a specific color when hovered over and clicked on. I would like to change this color as well.

    Thanks.

    #158851
    Sakin
    Keymaster

    @timmyjohnboy: Change the color in the following css for menu toggle button.

    /* Mobile Menu Button Color */
    .menu-toggle {
        background-color: #090401;
        color: #fff;
    }
    /* Mobile Menu Button Hover-focus Color */
    .menu-toggle:hover,
    .menu-toggle:focus {
        background-color: #393939;
        color: #e7b507;
    }
Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘How to change colors of Main Top navigation menu in "Create Pro" theme’ is closed to new replies.