Site logo

[Resolved] Remove site logo on mobile

Home Forums Support [Resolved] Remove site logo on mobile

Home Forums Support Remove site logo on mobile

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2469182
    Salty Communication

    Hi!

    I am using this CSS to remove the site logo on desktop on specific pages:

    .page-id-498 .site-header .site-logo {
        display: none;
    }

    How do I make work also on mobile and tablet? And is there a way to include all the pages but not the front page?

    Thanks!

    #2469263
    David
    Staff
    Customer Support

    So the mobile header is enabled and it has its own site-logo but its inside the #mobile-header not the .site-header
    Change your CSS to this:

    .page-id-498 .site-logo {
        display: none !important;
    }

    Then it will handle all site-logos regardless of where they are

    #2469303
    Salty Communication

    David, the savior! Thanks and merry christmas.

    #2469320
    David
    Staff
    Customer Support

    You’re welcome – and Merry Christmas!!

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.