Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #388675

    Hi
    My header color is 0000cd (dark blue) and i have a white color in logo area font color. But the font color is light gray, and only white when hoover the link and white when the link is active. I do simply want it white from start, light gray when hoover and white gray when active. But that’s not possible to do with the little buggy menu font color behavior.

    If i change the menu font color in Advanced styling- Main Menu Links to white it works (the font is white) but i do loose all the hoover and active menu functions.

    Please tell me how to get a clean white menu font color to start, a light gray menu font color when hoover and a light gray menu font color when the menu link is active? instead of the other way around everything.

    Friendly Regards, Charlie

    #388880

    Hey!

    Try adding this code to the Quick CSS:

    .avia-menu li > a > .avia-menu-txt, .avia-menu li.current-menu-item > a > .avia-menu-txt{
    color: white;
    }
    .avia-menu li:hover > a > .avia-menu-txt{
    color: gray;
    }

    Please do not copy this code directly from the mail notification message but from the forum thread. If it doesn’t work post a link to your website.

    Cheers! 
    Josue

    #388894
    This reply has been marked as private.
    #388899

    Hi!

    Try with this:

    #avia-menu li > a > .avia-menu-text, #avia2-menu li > a, #avia-menu li.current-menu-item > a > .avia-menu-text{
        color: white !important;
    }
    #avia-menu li:hover > a > .avia-menu-text{
        color: rgb(228, 228, 228) !important
    }

    Cheers!
    Josue

    #388908

    Hi Josue
    It was almost what i wanted to, except for the current menu item.
    The menu text color is now white and changes a little bit when hoovering over the links and this is exactly what i wanted.
    I should also want the current chosen menu item in the same color as when hoovering the links if it’s possible?

    Thanks, Josue, i know we are getting there, perhaps it’s only needs to add the (#avia-menu li.current-menu-item) code to the hoover code instead? But i’m not sure on how to put it there correctly.
    Thanks
    Charlie

    #388917

    Hi!

    Here you go:

    #avia-menu li:hover > a > .avia-menu-text{
        color: rgb(228, 228, 228) !important;
    }
    #avia-menu li > a > .avia-menu-text, #avia2-menu li > a, #avia-menu li.current-menu-item > a > .avia-menu-text, #avia-menu li.current-menu-item:hover > a > .avia-menu-text{
        color: white !important;
    }

    Cheers!
    Josue

    #389008

    Hi
    That works the same as the earlier code. The link color is white and i have the hoover color as rgb 186 186 186 now, and it works.
    But i do want the active link to be the same color as the hoover color (rgb 186 186 186) or #b6b6b6
    Also the search icon in the menu should have the same colors and same behavior.

    Maybe i wasn’t clear enough on how i really wanted them, i’m sorry for that.

    Thanks for your help

    #389247

    Hi!

    Try with this:

    #avia-menu li > a, #avia2-menu li > a, #avia-menu li.current-menu-item > a > .avia-menu-text{
        color: white !important;
    }
    #avia-menu li:hover > a > .avia-menu-text, #avia2-menu li > a, #avia-menu li.current-menu-item > a > .avia-menu-text{
        color: rgb(228, 228, 228) !important;
    }

    Regards,
    Josue

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.