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

    Adding this helped make it larger, but it still is not 200px tall and doesn’t extend to the entire screen on Chrome.

    .html_header_top.html_logo_center.avia-webkit .logo {
    left: 0%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    }

    #540288

    Ok, after more debugging, I find

    adding:
    .html_header_top.html_logo_center.avia-webkit .logo {
    left: 0%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    }
    .container {
    padding: 0px 0px;
    }

    to my custom css, fixes it for the most part, but the height is still off on chrome.

    This code will fully fix my issue on chrome, but messes things up on other browsers.
    .logo img{
    width: 100%;
    height: 200px;
    }

    #540290

    I finally added this to fix only on Chrome:
    @media screen and (-webkit-min-device-pixel-ratio:0) {
    .logo img{
    width: 100%;
    height: 100%;
    }}

    Please do let me know if there is a more elegant way to fix all this!

    #540558

    Hi,

    Did your code work eventually? If not please post screenshots of the problem so that we can understand better. If your code works I would go with it :-)

    Regards,
    Rikard

    #541126

    Hi, Rikard
    The code I added fixed the problem. But is is a lot of custom css. :-)
    Thanks
    Saras

    #541168

    Hey Saras!

    We would provide you the same code for the solution :)

    Best regards,
    Yigit

    #625427

    Hello,

    I found this code very helpful, however, I’m finding the problem still exists on Firefox. Here’s a screen shot of the same logo file being used on a “Boxed Layout”. https://www.dropbox.com/s/i8wjaakbf3svbyh/Logo%20not%20sized%20correctly.pdf?dl=0
    The top screen shot shows the menu below the logo but the logo is NOT the full height of the header area.
    The bottom screen shot show the menu above the logo and it is sized correctly.

    I’ve added the code you suggested above to my Quick CSS:
    .html_header_top.html_logo_center.avia-webkit .logo {
    left: 0%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    }

    Let me know if you have a correction for Firefox browser and why it would show correctly when menu is above but not when menu is below.

    Thank you,
    Olivia

    #625830

    Hi!

    Please change the code to following one

    .html_header_top.html_logo_center .logo {
        left: 0;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    Best regards,
    Yigit

    #625977

    Many thanks! That works perfectly!

    #626441

    Hi,

    You are welcome, glad we could help! Let us know if you have any other questions or issues :)

    Best regards,
    Yigit

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Logo not showing at 100% width only on Chrome browser’ is closed to new replies.