• Hello,

    I feel like this is quite a simple ask, but I’m not sure how to go about it in Minamaze.

    My logo currently overlays over the menu in the mobile version, I’d prefer to just make it not visible and if possible, replace it with text.

    Any help is much appreciated.

    Thank you.

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

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hi there,

    You can try adding the following code to your Admin Panel > Appearance > Customize > Additional CSS field:

    div#logo {
      display: none;
    }

    Thanks!

    Thread Starter naztheeternal

    (@naztheeternal)

    Hi @emranemranx

    Thanks for the quick response, although won’t this hide my logo on the desktop version of the website as well?

    Cheers

    Thread Starter naztheeternal

    (@naztheeternal)

    Anybody have any guidance on this? Would be much appreciated.

    TUT Support

    (@phpexpert21)

    Hello @naztheeternal,

    Please apply the below given css under Appearance -> Customize -> Additional Css

    @media only screen and (max-width: 568px)
    div#logo {
    display: none;
    }
    }
    

    I hope the above was helpful.

    Kind regards,

    Manoj

    Thread Starter naztheeternal

    (@naztheeternal)

    Hi @phpexpert21

    Thanks for this, I believe it has successfully implemented what I was looking for.

    Just a note for anybody that does use this in the future, there is a LBRACE missing in the above code. It should be:

    @media only screen and (max-width: 568px) {
    div#logo {
    display: none;
    }
    }
    TUT Support

    (@phpexpert21)

    Hello @naztheeternal,

    Yes, miss the curly braces.

    “Glad I could help! ??

    If you get a chance we’d absolutely love for you to leave a review for Minamze. Don’t worry if you don’t get a chance, we know how busy it can get when building a new site. ??

    You can leave a review for Minamze here:

    https://www.ads-software.com/support/view/theme-reviews/minamaze#postform

    If you have anymore questions let us know!”

    Kind regards,

    Manoj

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Hide Logo in Mobile’ is closed to new replies.