• Hello everyone:
    I can’t remove the logo image, in the version for mobile.
    You would be so kind as to help me.
    I’m not a expert with WordPress.
    Is related with the media queries, isn’t it?
    Thank you very much.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi txopy,

    thanks for using MH Newsdesk lite.

    The theme is fully responsive, that means there is no separate mobile version of the theme. The theme will automatically adapt based on the screen resolution of the device that is used.

    Do you mean that you want to hide the site logo when viewing your site on mobile devices (e.g. smartphone)? It would be helpful if you could provide more information and your URL – thanks.

    Thread Starter Juan Nieto Cano

    (@txopy)

    Thanks for responding so quickly.
    How you say, what I really want is to hide the logo image in the mobile version.
    The url of my website is: nietocanojuan.com
    Greetings.

    It seems you have customized the theme in several ways and that also is the source of your issue with the logo. You could for example do something like:

    @media only screen and (max-width: 980px) {
        .logo-wrap img {
            display: none;
        }
    }

    That will at least solve the issue with your logo/image. But then you have another issue with a collapsing header because of your customizations. That could be fixed for example like this:

    @media only screen and (max-width: 980px) {
        .logo-title {
            margin: 0 auto;
        }
    }

    Anyway, please keep in mind that you are using a free theme and we can’t really provide free support for custom coding. ??

    Thread Starter Juan Nieto Cano

    (@txopy)

    I tested both alternatives, but they don’t fix the problem. Surely, because I have made changes in the theme.
    Thank you anyway.
    I’ve fixed it, by other way, I’ve eliminated logo-title and logo-tagline.
    The important thing is that now work correctly.
    Greetings.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove image of logo in the mobile version .’ is closed to new replies.