Tagged: , ,

Viewing 21 posts - 1 through 21 (of 21 total)
  • Author
    Posts
  • #816888
    #817012

    Hey musedesignca,

    The logo seems to be in the top left corner on mobile now. Where you able to get this fixed?

    Best regards,
    Jordan Shannon

    #817253

    Im on an iphone and I still cant see a logo.

    #817295

    Hi,

    This is how I am viewing the page. Let me know if this is not correct:

    https://snag.gy/kBDLbx.jpg

    Best regards,
    Jordan Shannon

    #817356

    Interesting. This is how I see it:
    cabra

    #817358

    Hi,

    Please try deactivating all active plugins and check if that helps. Also, try re-uploading the logo and refreshing your cache on mobile.

    Best regards,
    Jordan Shannon

    #817919

    I deactivated all plugins and re-uploaded the logo but its still not showing up on any of my iPhones.
    I dont know how to refresh cached on mobile but I quit safari and then tried opening the page again.

    #817928

    Hi,

    Try and remove the custom css (be sure to paste/save it elsewhere first!) and see if there is not a css conflict.

    Best regards,
    Jordan Shannon

    #819659

    You were right Jordan, something in the custom CSS is in conflict with that mobile logo showing up. I guess I will have to re-add each css block back one at a time to find out which one is making it do that. Thanks!

    #819661

    Actually, I found what’s making the logo disappear on mobile.
    Its padding we added to the top of the logo to center it on the desktop site header:

    strong.logo img{
    padding: 40px 0px;
    }

    So if I remove that the logo is stuck right at the top of the browser. How can I fix this for desktop and mobile?

    #819674

    Hi,

    So when this is removed it appears on mobile? Can you post a screenshot?
    Best regards,
    Jordan Shannon

    #820229

    I changed the padding to 10px and it appears on mobile now but it doesnt look centred vertically on desktop
    Screen shot of mobile is here: https://ibb.co/jv9T5F

    #820397

    Hi,

    I`ve checked it and all looks normally – could you provide some screenshot with this problem?

    Best regards,
    John Torvik

    #820629

    The mobile logo looks good now but now without that extra padding the desktop logo isnt centered vertically as you can see here:
    https://ibb.co/nhFfLF

    #820646

    Hi,

    I see. Add the the following to quick css:

    @media only screen and (min-width: 767px)  {
    strong.logo img {
    margin-top:40px!important;
    }
    }

    Best regards,
    Jordan Shannon

    #820756

    That worked great thanks.
    One more problem Im having is now the sticky header logo isnt in the proper position as seen here:

    https://ibb.co/nnVQ4a

    #820824

    Hi,

    Can you try to add this code inside the code given to you by Jordan?

    
    .header-scrolled strong.logo img {
        margin-top: 0 !important;
    }
    

    so it should look like this:

    @media only screen and (min-width: 767px)  {
      strong.logo img {
        margin-top:40px!important;
      }
    
      .header-scrolled strong.logo img {
        margin-top: 0 !important;
      }
    }

    Hope this helps :)

    Best regards,
    Nikko

    #820864

    That worked but the sticky header logo wasnt scaling down so I added this as well:

    .header-scrolled {
    min-height:80px;
    }
    .header-scrolled .logo, .header-scrolled .logo img, .header-scrolled .logo a {
    min-height:80px;
    }

    It seems like the logo is losing resolution when it scales down to the sticky header size now which seems strange. Do you know why? Its not as clear as the full size logo.

    #820906

    Hi,

    It does not appear to lose quality when I view it. I am using Chrome on a PC.

    Best regards,
    Jordan Shannon

    #823028

    Ok thanks, it must just be a firefox thing. I will test it in other browsers.

    #823328

    Hi,

    Please do and let us know the result. And, you can also try re-uploading the logo.

    Best regards,
    Jordan Shannon

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