• Resolved lovestobegreen

    (@lovestobegreen)


    Hi Steven,

    Well, I’ve tried for hours to figure this one out on my own but with no luck.

    I’d simply like to have my logo on the far left side of my main menu on desktop only.

    Is this possible?

    Thanks in advance!

    Best,

    Michelle

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Steven (LyraThemes)

    (@stevenlyrathemes)

    Hi Michelle,

    There’s not really a great way to do this since it’s not something supported by the theme, but you could hack it a bit with absolute positioning since you’ve modified the menu to be full width (which looks nice, btw!).

    Also it will require making the logo pretty small to fit in that nav menu, I’m not sure how legible it will be at that size, but you can give it a shot and see what you think.

    You can adjust the 992px to whatever breakpoint you want this to take effect at:

    @media screen and (min-width: 992px) {
        .navbar-default .navbar-nav {
            max-width: calc(100% - 120px);
        }
        .header .logo {
            z-index: 9999;
            position: absolute;
            left: 20px;
            top: 10px;
        }
        .logo img.custom-logo {
            max-height: 50px;
        }
    }

    Best of luck! ??

    Thread Starter lovestobegreen

    (@lovestobegreen)

    Oh, I can’t thank you enough Steven!!

    You have no idea how many hours I spent trying to figure this out. This is just what I was trying to do!

    Thank you, thank you, thank you and have a wonderful weekend!

    Best,

    Michelle

    Steven (LyraThemes)

    (@stevenlyrathemes)

    So happy to hear that it worked out! ??

    Thanks so much, you too!

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