[Resolved] Navigation Logo not showing in responsive mode

Home Forums Support [Resolved] Navigation Logo not showing in responsive mode

Home Forums Support Navigation Logo not showing in responsive mode

Viewing 7 posts - 16 through 22 (of 22 total)
  • Author
    Posts
  • #336494
    Tom
    Lead Developer
    Lead Developer

    It looks pretty big to me now? Do you want it to be outside the mobile header container?

    #336501
    Harris

    It’s OK now. But I had to increase the menu items height (in mobile menu) in order to increase it (increasing it the logo size was increasing too).
    What I was asking is if there is any way to increase the logo without having to increase the menu items height.

    #336504
    Leo
    Staff
    Customer Support

    Try this CSS to remove the padding around the logo:

    @media (max-width: 768px) {
        .mobile-header-navigation .mobile-header-logo img {
            padding: 0;
        }
    }
    #336509
    Harris

    Ι don’t want to have zero padding 🙂
    Isn’t there any straightforward way to just increase the logo size?

    It’s OK as it is now for me. I am just asking to know in case I will sometime have a menu with more content/options where the 50 pixels height will be too much.

    #336510
    Leo
    Staff
    Customer Support

    You can change 0 to 3px if you want:

    @media (max-width: 768px) {
        .mobile-header-navigation .mobile-header-logo img {
            padding: 3px;
        }
    }
    #336515
    Harris

    OK. Thanks!

    #336919
    Leo
    Staff
    Customer Support

    No problem!

Viewing 7 posts - 16 through 22 (of 22 total)
  • You must be logged in to reply to this topic.