[Resolved] tablet size isseu

Home Forums Support [Resolved] tablet size isseu

Home Forums Support tablet size isseu

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #384937
    Edwin

    Hi Tom

    I am using only 3 buttons in my menu and have set the mobile version a bit lower and all working fine, until i reach the small tablet size and the logo is showing over the top of the menu.

    Can you help me out so, I would like to shows normal menu and logo on bigger screens (say 500px size)

    See link:
    http://northernblood.com.au/dr-prahlad-ho/

    #385045
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    Not sure I understand. Are you wanting the mobile menu to kick in sooner?

    #385051
    Edwin

    Hi Tom

    No later. Try the link and resize it to small tablet size and you will see that the logo is over the menu.
    Someone on Ipad tablet told me that.

    #385072
    Tom
    Lead Developer
    Lead Developer

    You have this custom CSS:

    .site-logo {
        display: inline-block;
        position: absolute;
        top: -30px;
    }

    You should apply it to desktop only:

    @media (min-width: 769px) {
        .site-logo {
            display: inline-block;
            position: absolute;
            top: -30px;
        }
    }
    #385084
    Edwin

    Thanks, but still doing it

    #385413
    Tom
    Lead Developer
    Lead Developer

    I’m not seeing that updated code added. Make sure to clear any caching/optimizing plugins.

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