Okay
  Public Ticket #2418732
Change Main Menu Logo when Full Screen Off Canvas Menu is used
Closed

Comments

  •  3
    Lucas-media started the conversation

    Hey guys, i'm developing this homepage. 

    Can you please provide a soluton to swap out the light logo for a dark one on when the full screen cover fade is applied for the burger menu?

    Thanks!

  •  8,884
    Tahir replied

    Hey Again,

    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):

    #header-outer[data-transparent-header="true"].transparent.side-widget-open >header #logo img.dark-version {
        opacity: 1 !important;
    }
    #header-outer[data-transparent-header="true"].transparent.side-widget-open #logo .starting-logo {
        opacity: 0 !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  3
    Lucas-media replied

    Amazing, very slick Tahir, thanks!

    One last request please. Can we hide the Shadow Behind Transparent Header but only for when the menu is open?

    Regards

  •  3
    Lucas-media replied

    Hey guys i resolved my last question, CSS below:

    /**Remove background shadow on menu overlay**/
    #header-outer.transparent.side-widget-open[data-transparent-header="true"][data-transparent-shadow-helper="true"].transparent:not(.dark-slide):before {
        background: none!important;
    }