• Resolved nehead

    (@nehead)


    Hello,

    I uploaded a larger logo and increased the logo size in my CSS to match. Looks great on a desktop but displays a duplicate logo about half way down on the mobile version. Is there somewhere I need to update the logo size for mobile as well that might be causing this?

    https://www.appmaking101.com

    Thanks a ton,
    Nick

Viewing 5 replies - 1 through 5 (of 5 total)
  • Moderator James Huff

    (@macmanx)

    Are you using a plugin for the mobile site? If so, which?

    Or, is this built into the theme, and if so what is the theme?

    Thread Starter nehead

    (@nehead)

    I’m using the Point theme and made the logo size updates to the style.css (see below):

    #header .image-logo { margin: 11px 0 }
    #logo a {
        float: left;
        color: #2A2A2A;
        font-weight: bold;
        background:url("https://appmaking101.com/wp-content/uploads/2015/03/logo-final3.png");
        width:300px;
        height:100px;
    }

    Everything looks great on a desktop, it’s just when using a mobile device that I’m having the issue.

    Moderator James Huff

    (@macmanx)

    Ok, the theme’s stylesheet probably has separate media queries for mobile devices. Look for other instances of .image-logo in the stylesheet.

    If you can’t find any, I recommend asking at https://www.ads-software.com/support/theme/point#postform so the theme’s developers and support community can help you with this.

    Thread Starter nehead

    (@nehead)

    Here’s the fix if anyone else runs into this issue:

    @media only screen and (max-width: 767px) {
    #logo a {background:none;}
    }
    Moderator James Huff

    (@macmanx)

    Thanks for sharing your solution!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Logo Duplicating on Mobile Devices’ is closed to new replies.