Okay
  Public Ticket #3202109
​Menu Bottom Bar Separator z-index
Closed

Comments

  •  5
    enricomorichelli started the conversation

    For Menu Bottom Bar Separator is possible to give css z-index to fit under dropdown menu?

    thanks

    Attached files:  Immagine 1.jpg

  •  8,839
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    #header-outer[data-format="centered-menu-bottom-bar"] #top .span_3:before {
        z-index: 0 !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  5
    enricomorichelli replied

    Perfect, thanks Tahir.

    It is also possible to have gradient background (from top to bottom) in header?

  •  8,839
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    div#header-outer {
        background: linear-gradient(180deg, rgb(28 55 102) 0%, rgb(28 55 102) 65%, rgb(170 169 90) 100%);
    }

    Thanks


    ThemeNectar Support Team 

  •  5
    enricomorichelli replied

    Fantastic, thanks Tahir