Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #445187

    Hello,

    I built a submenu to the section on the page, for example ”#av_section_5”, ”#av_section_7”. Now I noticed the problem in my smartphone (Nexus 6) and tablet (iPad). While I click in the submenu on these devices, the page is scrolled to the right place, but the menu does not hide. It is different when the page is reloaded – as in the case of moving to another page – then the menu is hidden.

    On my smartphone menu is on the right side and therefore can be moved toward the side (print screen – http://prntscr.com/75eev8 ). The menu at iPad covers part of the page (print screen – http://prntscr.com/75ehn6 ).

    I have a clean code and no plugins.

    Is there any way to fix this?

    Regards,
    Kramkom

    #447556

    Hi kramkom!

    Sorry for the late reply. I can’t seem to reproduce the error on iphone4 using latest Safari, when I select one of the anchor links the menu closes and the page scrolls to the anchor in question. What browser are you using to get this error?

    Cheers!
    Rikard

    #447582

    Hi,

    I’m using Safari on the iPad Air 2, Chrome 42 on Nexus 6 with Android 5.1. I can also check other browser on the Nexus, but a few days ago, I received from you a message that suggests that you already know what kind of problem. Unfortunately, I think the message has been deleted but I have it e-mail:

    “Elliott wrote:

    Hi Kramkom!

    I see what you mean. It would take some JavaScript changes to check for an anchor on the link and then hide the menu when clicked on. I went ahead and added to our issue this letter to see if our devs think it will be an easy fix or workaround.

    Cheers!
    Elliott

    Post Link: https://kriesi.at/support/topic/submenu-to-the-section-on-the-page-on-mobile-devices/#post-445827.”

    Could you see if indeed a problem it’s known by your team?

    Regards, Kramkom

    #448044

    Hi!

    Send us a WordPress login and we’ll take a closer look.

    Regards,
    Elliott

    #448048
    This reply has been marked as private.
    #449320

    Hi!

    Sorry for the late reply, I’m getting the same error you are describing on ipad/safari but not on iphone/safari. I’ll check with the rest of the team.

    Best regards,
    Rikard

    #449386

    Thanks. Now it will be easier to You to work with this error because you know what the problem is.

    On my Nexus menu is shown on the right (as in the screenshot above), and the page I can move to the left.

    Regards,
    Kramkom

    #449602

    Hey!

    Well the menu being moved to the left on mobiles was a bug in a previous version but when I login to your site I do not see the same thing in your screenshots. It looks like you have done quite a bit of customization because on my end the responsive menu button is displaying to the left and the menu displays beneath it for some reason? Not sure what’s going on there.

    Let’s try the following.

    1. Deactivate all plugins.

    2. Completely delete Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest. This will ensure that all of the files are updated.

    Best regards,
    Elliott

    #449660

    I made steps 1 and 2 exactly as you wrote. Unfortunately, it did not help.

    The template is not modified by me in any way. I put just a piece of code (in the General Styling) from the topic at kriesi.at (back to top button on mobile devices).

    Can I do something wrong – the page or menu? I do not know what else I can think of. Maybe there is a problem with my server (although I use one of the best web hosts in the country)?

    This is the best template on which I worked so far and I’m going to buy more licenses, but this error needs to be rebuilt some of my concepts, which is why this problem makes me sad. Therefore, if you have any other ideas to solve this problem, I will be very grateful.

    Best regards,
    Kramkom

    #450183

    Hi!

    Ok so it looks like you have multiple installations of Enfold and I was viewing the wrong one. When I check your /testy/ogienwkominku/ installation on a mobile device it’s displaying fine, I cannot scroll right to view the menu as is how it should be.

    If you can still scroll right then try clearing your browser cache on the mobile device.

    Cheers!
    Elliott

    #451988

    Hi again,

    All your previous suggestions have not been successful.

    It seems to me that only I have this problem (and Rikard?). I check on different phones (Nexus 6, Nexus 4, iPhone 6, LG L9), on different browsers (Android – Chrome, Firefox, Opera, “Next browser”, the iPad Air 2 – Chrome, Safari), and always the error is. Therefore, let me once again describe the point at which the error is visible.

    You must visit the http://kramkom.pl/testy/ogienwkominku/cennik-drewna-koszty-transportu-i-dodatkowych-uslug/
    Only on this page I created links like “#av_section_2”, “#av_section_5” etc.

    Clicking on this page submenu, for example “CENNIK I TRANSPORT > Koszty transportu” – automatically scrolls to address the link “av_section_5” and the menu will not hide – comes up with the right, and the page can be moved (left, right). Only reload the page can hide the menu. This behavior following on any mobile device and any browser (I found one exception “UC Browser” on Android).

    Please specify whether you are able to fix the error or not. The problem is that this website I do for my client. If this error does not remove, I’ll have to convince him to another menu, and I do not want to do that.

    Best regards,
    Kramkom

    #452648

    Hey!

    Alrighty I see it now. Your #wrap_all element position should be set to relative but it’s set to static. Are you sure you have completely deleted Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest? That should be fixed in version 3.1.5.

    If that’s still not working (make sure to clear browser cache) then try adding this to your Quick CSS.

    @media only screen and (max-width: 767px){
        #wrap_all {
            position: relative;
        }
    }

    Best regards,
    Elliott

    • This reply was modified 8 years, 10 months ago by Elliott.
    #452722

    Hi,
    Thank you very much for your time. Now, something good is happening. I am glad that now we understand each other.
    Yes I removed completely Enfold folder and sent the new one. It did not help. Besides, I bought your template in version 3.1.5 (quite recently).

    The following code also did not help.

    @media only screen and (max-width: 767px) {
         .responsive.html_header_sidebar #top {
             position: relative;
         }
    }

    However, you inspire me what you wrote and I modified this code such as below

    @media only screen and (max-width: 767px) {
         #wrap_all {
             position: relative;
         }
    }

    With this code it is great on smartphones, but still bad on iPad. Do you have any idea of hiding the menu on the iPad?
    In any case, thank you very much for your help.

    Best regards,
    Kramkom

    #453299

    Hey!

    You could increase the 767px value to target the iPad screen width or just do this.

    #wrap_all { position: relative !important; }
    

    Cheers!
    Elliott

    • This reply was modified 8 years, 10 months ago by Elliott.
Viewing 14 posts - 1 through 14 (of 14 total)
  • You must be logged in to reply to this topic.