• Hi. My mobile menu navigation on my page is not working. When I try to go to the pages it says page not found. however, it works just fine on desktop! not sure what is going on?

    For info: I am using the BigBang template. It is outdated but its still going strong.

    I know I am using an outdated template but everything else seems to be working fine. Is there anything I need to do to reconnect it or fix the menu?

    • This topic was modified 7 months, 2 weeks ago by mxahmed.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hallo @mxahmed,

    maybe try to give your select list an ID.

    Where one Code Example: You can debug it with console.log and Check it if the URL in the Attribute is valid.

    $(document).ready( function() {
       $('#select').change( function() {
          location.href = $(this).val();
       });
    });
    
    <select id="select">
        <option value="#">Select a location</option>
        <option value="location.htm">Location</option>
        <option value="other.htm">Other</option>
    </select>
    Thread Starter mxahmed

    (@mxahmed)

    Thanks. where would i put this code? i am not exactly sure I can find that console log? I recently just started having this issue. The nav bar was working jus fine before! do you think its php related? thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Mobile Navigation Menu not working’ is closed to new replies.