Support » Plugin: WP MMenu Lite » header misplaced

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author jamesdbruner

    (@jamesdbruner)

    Is there any way you can send me the link to your website with the issue showing so I can take a look? If not at very least a screenshot would be helpful. I’m glad to help, I just need more to go off of than a description of the problem…

    Thread Starter jodahr

    (@jodahr)

    this is the link http://www.kippahsource.com/newsite/ , the link that triggers the menu inside the home is: ” click hero to show WP MMenu Lite menu site” and is placed in the header that now is at the bottom.
    You can see the header is now at the bottom of the website right before the footer. thanks for your answer.

    Plugin Author jamesdbruner

    (@jamesdbruner)

    For anyone else having an issue similar to this, here’s a snippet of the email jodahr sent me that has the solution in it:

    i solved the issue adding a few words to the jquery.mmenu.min.all.js file

    it was:

    function s() {
            r.$wndw = e(window), r.$html = e("html"), r.$body = e("body"), r.$allMenus = e(), e.each([d, c, u], function(e, n) {
                n.add = function(e) {
                    e = e.split(" ");
                    for (var t in e) n[e[t]] = n.mm(e[t])
                }
            })

    and i just add header and footer where body is, like this:

    function s() {
            r.$wndw = e(window), r.$html = e("html"), r.$body = e("header,body,footer"), r.$allMenus = e(), e.each([d, c, u], function(e, n) {
                n.add = function(e) {
                    e = e.split(" ");
                    for (var t in e) n[e[t]] = n.mm(e[t])
                }
            })
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘header misplaced’ is closed to new replies.