Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #820757

    I tried a few minutes ago the menu on right as icon. If I click on desktop on it, it opens correct. But clicking on any menu does not drive me to the page – only submenus do open them. Am I wrong in using it?

    #820825

    Hey Adrian,

    Can you give us temporary admin access? so we can check.

    Best regards,
    Nikko

    #820830

    Hi Nikko, let me try this a bit more as I find some time for testing. I did a same setup on a staging site and there I did not see issue. So, maybe it is plugin related as there are not same plugin configuration. Maybe it is Jetpack related. But I will test and report.

    Thanks, Adrian

    #820835

    Hi Adrian,

    Sure, I agree it might just have some conflict with a plugin. :)

    Best regards,
    Nikko

    #820854

    Hi Nikko, it was a settings fault by me – sorry. I had in main menu > burger/mobile menu set to Display submenu items on click. I changed it to always … and now it works fine.

    But I have still another css bug in Safari on Mac:
    If I open burger menu with mouse and move mouse down on menu items, they get highlighted. But after leaving item with mouse they get black instead of going back to default background menu color. Test is in menu black, so text can not be read anymore. I found the stage at were this happens:

    I tested on staging site some settings and no plugin was the case on issue, instead it is Enfold. I hadn’t this issue first on staging site, because I had in menu at top first level menu only one item and below few second level items.
    As I changed the main menu in the way, that on top first level three items were setup and below few second level items, then the bug is there.

    #821017

    In case of setting menu to icon / burger menu on desktop too, the content of footer element three and four is empty. If I check source code, elements are there but unvisible and unusable.

    I have had in footer three and four a headline and a custom menu. Headline is shown, but no menu links.

    If I switch back to default menu in header all footer elements are visible. This issue is in Safari and Google Chrome.

    #821203

    Hi adrianwackernah,

    We still need a link to be able to see what you see and try to come up with a solution.

    Best regards,
    Victoria

    #821207
    #821368

    Hi,

    Thanks for providing the link, can you try adding this css code in Quick CSS (located in Enfold > General Styling):

    .html_burger_menu_active #footer .menu-item {
        display: block;
    }

    Hope this helps :)

    Best regards,
    Nikko

    #821441

    Hi Nikko, that helps with the missing footer content. Thanks. But it doesn’t solve the issue with menu item stays black after mouseout. Beside I use as general styling the settings from Enfold 2017. I tested a bit more and found this:

    It seems, that if I am at top of page and then call menu, you see underneath first item in menu the breadcrumb. This seems to be the issue, because if I scroll a bit down on page and did a call of menu than, this issue went away. Maybe it is a kind of layer bug?

    #821975

    Hi adrianwackernah,

    The code

    
    html, #scroll-top-link {
        background-color: transparent;
    }
    

    Should be changed to

    
    html {
        background-color: transparent;
    }
    

    Because it was making your scroll top link transparent.
    And this is the rule that get’s applied in safari to make the menu black

    
    ::selection {
        background-color: rgba(0, 0, 0, 1);
        color: #ffffff;
    }

    It’s it the /wp-content/uploads/dynamic_avia/enfold_child.css file. The weird thing is the font color does not apply, only the background color.
    So you can try this code:

    
    ::selection {
        background-color: rgba(0, 0, 0, 0.2);
        color: #ffffff;
    }
    ::-moz-selection {
        background-color: rgba(0, 0, 0, 0.2);
        color: #ffffff;
    }
    

    Let us know if that helps.
    Best regards,
    Victoria

    #822009

    Hi Victoria, thanks for your detailed explanation. Before I will change that in css, I have to mention that I found today a random behavior with the burger menu:

    After scrolling any page a bit down and up and calling at that stage the burger menu, sometimes I have black background on first item, other times I see first two items stay black after mouseover, then items stay gray or text is only bolded. I saw after set javascript to be deactivated in Safari, that burger menu is called by javascript, maybe handled too.

    Because of random of issues in burger menu, at using the general styles of Enfold 2017, can this be a javascript issue? If it were a css issue, it would be there all time, or am I wrong?

    #822120

    Hi adrianwackernah,

    Do you still get that after adding the css, I gave you? Well, menus rely on JavaScript, so disabling it is not a good idea.

    Best regards,
    Victoria

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