While using this theme I encountered a bug in TinyNav mobile menu. When tinynav is displayed instead of the normal menu, it has the same value all the time and not the selected item's value.

For example, let's say you have a Home and a Contact page with the same urls. Tinynav by default will display Home as text in the mobile menu even when you are at /contact url.

To fix this go to Impact theme's js folder and locate the main-menu.js. There go to line 75 and change the
$('option[value="'+document.location+'"]').attr("selected","selected");
to
$('option[value="'+document.location.pathname+'"]').attr("selected","selected");