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

    Good Afternoon Kriesi!

    So I have a Mega Nav that I am pushing the boundaries with and I would love your wisdom as to how to get there.
    • How do I go about having a border-right: on the first/second column (obviously not the last column lol).
    • Have the Red underline hover have some padding-bottom on main nav? I tried but it was making the links jump.
    • Have a different font color/style for various titles and nested links?

    I appreciate your time in advance and thanks bunches & bunches!!
    ~Amanda

    #1182443

    Hey amanda-mdllc,

    Please try this in Quick CSS:

    #top #header .avia_mega_div > .sub-menu > li > ul:not(:last-child) {
        border-right: 1px solid red;
    }

    Best regards,
    Rikard

    #1183198

    Afternoon Rikard,

    I tried that but it does not seem to work. Any other suggestions? I am reattaching the the mock in the private content section below.

    I am trying to add the line along the columns
    The main links in the mega nav to be the Bold Blue
    The nested links to be the Grey

    Thanks!
    ~Amanda

    #1184036

    Hi,

    Thank you for the update.

    1.) You can add the following css code to add borders between the columns.

    #top #header .avia_mega_div > .sub-menu > li:nth-child(1), #top #header .avia_mega_div > .sub-menu > li:nth-child(2) {
    	border-right: 3px solid red;
    }

    2.) Use this to adjust the underline or indicator below the menu items.

    #top .av_header_transparency .avia-menu-fx {
    	bottom: 30px;
    	width: 70%;
    	left: 15%;
            display: block;
    }
    

    3.) For the mega menu column title, this should help.

    #header .mega_menu_title {
    	color: #f4b233;
    	font-family: 'Open Sans Condensed', sans-serif !Important;
    }
    

    Best regards,
    Ismael

    #1184236

    yay Ismael we are very close!!!!

    2 things when you hover the mega nav on columns that only have 2 columns I need to have that extra divider line removed. “About Us” is the only 2 column nav item.

    The other thing is I need to make the
    #header .mega_menu_title 1st UL to be bold #005291 and the nested ULs underneath it to be #666666

    ex: Under the About Us –> Who We Are nav “Our People” needs to be bold & blue & United Way Staff needs to be the grey.

    I would love for it to be like this for all #header .mega_menu_title 1st ULs

    I am attaching the screenshot again for a design reference.
    Thanks again for all your help

    #1185058

    Hi,

    Thank you for following up.

    You can add this css code to change the style of the parent menu or those with child items.

    #top #header .avia_mega_div > .sub-menu > li > .sub-menu > li.menu-item-has-children > a {
    	color: blue;
    	font-weight: bold;
    }

    And this css code for the child items.

    #top #header .avia_mega_div > .sub-menu > li > .sub-menu > li.menu-item-has-children ul li a {
    	color: gray;
    }

    Best regards,
    Ismael

    #1185317

    Thanks for the above! I have 1 more thing and then I think we’re done.

    For Mega Nav columns that only have 2 columns I need to remove the yellow diving line. Is that possible? All columns but About Us only have 2 and need to have the yellow border removed.

    #1186283

    Hi,

    Yes, that’s possible. Add the following code below the previous css modification that we added to apply borders to the mega menu columns.

    #top #header #menu-item-6965 .avia_mega_div > .sub-menu > li:nth-child(2) {
    	border-right: 0;
    }
    

    The #menu-item-6965 selector is the unique identifier of the Our Work menu item.

    Thank you for your patience.

    Best regards,
    Ismael

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