Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #723063

    What are the styles that affect the main navigation menu?
    I want to change some parameters such as background color, padding, border-bottom etc. of each item. And hover effect.

    See url below.
    thank you
    Sabina

    #724135

    Hey LbCCbeA_89,

    It’s best recommmended to change the look and feel of the menu items from enfold theme options.

    Enfold > Advance Styling > Menu Items

    If you are looking for CSS class names for advanced styling, here they are :

    NOTE: Add important rule to the css property if you do not see any changes.
    Other reason you may not see the css changes is because a caching plugin is active, please deactivate the cache plugin and try to hard refresh the browser.

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    /* Menu font color */
    #top #header .av-main-nav > li > a .avia-menu-text, 
    #top #header .av-main-nav > li > a .avia-menu-subtext {
        color: #4d4d4d;
    }
    
    /* 
    Background color
    Border color
    font size
    */
    #top #header .av-main-nav > li > a {
        background-color: #f7f7f7;
        border-color: #bdbdbd;
        font-size: 16px;
    }
    
    /* Active menu hover state */
    .header_color .avia-menu-fx {
        background-color: #c51048;
        border-color: #c51048;
    }
    
    /* Header border */
    .header_color div {
    border-color: #ff0303;
    }

    Best regards,
    Vinay

    • This reply was modified 7 years, 4 months ago by Vinay.
    #724407

    Sorry
    I tried the styles you sent me, but still do not work:
    -font color
    -background color
    of the hover state, border-bottom instead works.
    This is the style:
    /* Active menu hover state */
    .header_color .avia-menu-fx {
    color: #ffffff !important;
    background-color: #c51048 !important;
    border-bottom: 3px solid #2e96ab;

    }
    I also tried to disable plugins.

    #725771

    Hi,

    I have checked the site and the code given and I see it properly reflecting on the site, I can see the font color in #4d4d4d and background color using #f7f7f7, what color should it be using? did you declare other color instead?

    Best regards,
    Nikko

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