Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #275857

    When viewing my website via my iphone and ipad, the logo appears very blurry and is not centered between the drop down menu. Any way to fix this?

    Please see the following screenshot:
    http://my.jetscreenshot.com/16750/20140606-sbqg-34kb

    Thank you,
    Lin

    • This topic was modified 10 years, 5 months ago by OriginsSpeak.
    #275863

    Also the logo is not centered from top to bottom. How can we fix this?

    Thank you!

    #275867

    Hey!

    Change the code i gave you to:

    @media only screen and (max-width: 767px) {
    .logo img {
        position: relative;
        top: 12px;
    }
    .header-scrolled .logo img{
        top: 0;
    }
    }

    Cheers!
    Josue

    #275892

    Will this uncenter the logo when viewed by a standard pc? And sorry, I’m not familiar with code as much. Could you give me what I should copy and paste exactly.

    Thank you Josue!

    #275894

    No, that will apply the change i gave you in the other topic only when viewed in desktop, that way it doesn’t affect the mobile view.

    Look for this code in the Quick CSS:

    .logo img {
        position: relative;
        top: 12px;
    }
    .header-scrolled .logo img{
        top: 0;
    }

    Simply replace it by this:

    @media only screen and (max-width: 767px) {
    .logo img {
        position: relative;
        top: 12px;
    }
    .header-scrolled .logo img{
        top: 0;
    }
    }

    Best regards,
    Josue

    #275908

    I pasted this as instructed by it reverted my logo back to it’s original state being uncentered when viewing on a desktop browser.

    ?

    #275910

    Sorry, small typo on my code, use this one instead:

    @media only screen and (min-width: 767px) {
    .logo img {
        position: relative;
        top: 12px;
    }
    .header-scrolled .logo img{
        top: 0;
    }
    }

    Best regards,
    Josue

    #275931

    Used this one and while it corrected the desktop browser, it did nothing for the iphone/ipad browser.
    The logo still appears blurry and not centered correctly. The main concern at this point is the blurriness.

    Thanks,

    #275940

    This will fix it:

    @media only screen and (max-width: 767px) {
        .responsive .logo a , .responsive .logo img{height: 50px !important; max-height:50px !important; top: 7px; left: -3px; }
    }

    Result:

    Regards,
    Josue

    #275946

    Thank you, it worked :)

    #275948

    You are welcome, always glad to help :)

    Regards,
    Josue

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Logo appear very blurry via iphone and ipad’ is closed to new replies.