• Hi!

    I’m trying to add the logo to mystickymenu here: testpage

    I’ve managed to add it as an image in the menu, but it displays in the menu when it’s sticky and when it’s NOT sticky… and I only want it to display when sticky. Is there a solution for this? I’ve tried adding it as a background image as well but then the whole sticky menu dissapears. Thanks

    https://www.ads-software.com/plugins/mystickymenu/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter theas91

    (@theas91)

    Edit, this is the page now if anyone can help! thanks!

    You can try smth like this:

    #cssmenu {
        display: none;
    }
    #cssmenu.myfixed {
        display: inline;
    }

    There are more ways to do it, hope you got the idea…

    Now I see that you want just logo to be hidden in start, the principle is same as an example above, you will just need to ad img after #cssmenu:

    #cssmenu img {
        display: none;
    }
    #cssmenu.myfixed img{
        display: inline;
    }

    Maybe this example will not work, but thats the way you can do it, try to use different class or id to hide it in combination with .myfixed class when you want to show it

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Adding logo JUST to sticky menu’ is closed to new replies.