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

    Hi,
    I am writing about the Enfold theme. On our mobile site, particularly with the android platform, we are having an issue with the menu icon. If you tap directly on top of it, the menu list will not display. You have to tap on the extreme top right portion of the icon (almost completely off of it) to get the menu to pull up. This does not seem to be an issue with iphones or ipads. Any help would be greatly appreciated.

    Thanks,
    Travis

    #285455

    Hi!

    It’s because of this code you have in Quick CSS:

    div.phone-info {
    position: relative;
    top: 70px;
    left: 10%;
    }

    Try changing that to:

    @media only screen and (min-width: 767px) {
    div.phone-info {
    position: relative;
    top: 70px;
    left: 10%;
    }
    }
    

    Cheers!
    Josue

    #285463

    OK, So that definitely fixed the issue with being able to display the menu list by tapping the icon. However, now the phone number that was in the header is now above the header. Is that what was supposed to have happened, or did I do something wrong?

    thanks,

    tw

    #285467

    Hey!

    Add this too:

    @media only screen and (max-width: 767px) {
    .phone-info {
        position: absolute;
        top: 65px;
        width: auto !important;
        left: 80px;
    }
    }

    Best regards,
    Josue

    #285469

    Worked like a champ! Thanks a bunch!

    #285473

    You are welcome, always glad to help :)

    Regards,
    Josue

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