• Resolved enextconsultants

    (@enextconsultants)


    The suggested logo size says 360 x 50, but I have a square logo. When I make it 360 x 360, the logo is way too big. When I make it smaller at 75 x 75 the size is good but the logo is blurry.

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • Theme Author Archimidis Mertzanos

    (@archimidism)

    Dear @enextconsultants thanks for the feedback.
    I will do some tests with smaller logos and respond back to you!!

    Theme Author Archimidis Mertzanos

    (@archimidism)

    Dear @enextconsultants I have noticed , by reviewing the code, that the recommended logo height and width is 360×50 but the logo has also flexible height and width.
    I tried some combinations and without cropping the logo the logo was not blurry at all.
    Only it was a bit small.

    I tried it on mobile also and eveything was ok.
    The code theme uses to make the logo flexible is

     add_theme_support('custom-logo', array(
            'height' => 50,
            'width' => 360,
            'flex-height' => true,
            'flex-width' => true
        ));

    So it is flexible.

    Really Kind Regards
    ArchimidisM

    Thread Starter enextconsultants

    (@enextconsultants)

    When I add my header image it shows up fine at first then after a while it shows up blurry when I zoom close in. Any idea why that is?

    Thread Starter enextconsultants

    (@enextconsultants)

    Also is there a way to make it so you can’t zoom in?

    Theme Author Archimidis Mertzanos

    (@archimidism)

    Dear @enextconsultants what exactly do you mean by “zoom in”?

    Thread Starter enextconsultants

    (@enextconsultants)

    On a mobile device, you can zoom in with your fingers.

    Theme Author Archimidis Mertzanos

    (@archimidism)

    Hello, that is completely normal. If you zoom a mobile page is like zooming in a page in a browser in your computer.
    It is normal that the logo looks blurry if you zoom the page . I have tried some other webpages and the outcoume is the same.

    However I found a hack that maybe works. If you open the header.php file in a HTML Editor you will see on top something like this:

    <meta name="viewport" content="width=device-width, initial-scale=1">

    I have read here https://stackoverflow.com/questions/4472891/how-can-i-disable-zoom-on-a-mobile-web-page
    that if you chaneg the above tag to

    <meta 
         name='viewport' 
         content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' 
    />

    then the user could not zoom the mobile page :).

    You can try it.
    PS: If you want to make change to our theme and in a theme in general consider creating a child theme to apply these changes because when the parent theme is updated you won’t lose any changes at all.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Logo size’ is closed to new replies.