Okay
  Public Ticket #2043344
Menu on IE
Closed

Comments

  • josephwoods started the conversation

    Hi guys

    My client wants the menu items in the nav to be aligned with the bottom of the speech bubble logo. I wrote this CSS in a child theme to achieve this:

    #header-outer[data-lhe="default"] header#top nav > ul > li > a { margin-top:70px; }

    However, in IE this causes the white navbar to sporadically overlap with the page header.

    Any ideas how I can fix this?

    Cheers

    J


  •  8,994
    Tahir replied

    Hey Again,

    Sorry for the late turn around, we can get overwhelmed sometimes by the number of tickets. 

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    @media only screen and (min-width: 1000px) {
        #header-outer:not([data-format="left-header"]) #top nav>ul {
            top: 45px !important;
            position: relative !important;
        }
    }

    Thanks


    ThemeNectar Support Team