• Resolved pjdiaz

    (@pjdiaz)


    When i resize the window, the menu doesnt toggle.
    I have to refresh the page after resizing to get the drop down menu.Icompletely erased my site, checked Jquery and still cant find an aswer.
    Im not an expert, my knowledge is pretty basic, please help. I havent sleep in two days trying to solve this u_u

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter pjdiaz

    (@pjdiaz)

    anyone?

    Thread Starter pjdiaz

    (@pjdiaz)

    Well, i solved th issue. There’s a variable in the custom.js file that doesnt work:

    var gravida_bowser_width = jQuery(window).width();

    You have to change the part where it says:

    var adjustMenu = function() {
    if (gravida_bowser_width < 989) {

    To:
    var adjustMenu = function() {
    if (jQuery(window).width() < 989) {

    I really hope that this turns out to be useful for someone, took me about a week to figure it out alone.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Menu doesnt toggle on window resize’ is closed to new replies.