Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #272497

    When the responsive layout is at it’s narrowest, is there a way to force the logo nearer the left margin? I’ve keep the image a bit bigger than your recommended size – which I like – but am now suffering the menu popout overlapping the logo
    I did set the align to ‘left’ but it still seems to skip around a lot during window resizing!

    Thanks guys :)

    #272635

    Hey!

    Try adding this code to the Quick CSS:

    @media only screen and (max-width: 480px) {
    strong.logo {
        left: -60px !important;
        position: relative !important;
    }
    }

    Cheers! 
    Josue

    #273031

    AWESOME!
    One question.. is it possible to re-scale (bit smaller) the logo at that display size too?
    Thanks guys :)

    #273033

    Try this (replace the last code):

    
    @media only screen and (max-width: 480px) {
    strong.logo {
        left: -60px !important;
        position: relative !important;
    }
    .responsive .logo img {
        height: 60px !important;
        position: relative;
        top: 12px;
        left: 10px;
    }
    }
    

    Best regards,
    Josue

    #273888

    Perfect :)

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘main Logo alignment’ is closed to new replies.