Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1116765

    Greetings,

    I added this code to center my logo on my website.

    div .logo { left: 40%; }

    The problem is on tablet when its held vertically the logo overlaps the menu. How would I resolve this?

    #1116797

    Hey rlapeyre,

    Add this to quick css:

    @media only screen 
    and (min-device-width : 768px) 
    and (max-device-width : 1024px) 
    and (orientation : portrait) { 
    div .logo {
        left: 30%;
    }}

    Best regards,
    Jordan Shannon

    #1117167

    Thanks for the reply,

    The logo still overlaps the menu when the ipad is vertical.

    #1117299

    Hi,

    Please try this instead to have it all the way to the left:

    @media only screen 
    and (min-device-width : 768px) 
    and (max-device-width : 1024px) 
    and (orientation : portrait) { 
    div .logo {
        left: 0 !important;
    }}

    Best regards,
    Rikard

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