To be honest, I wouldn't use that menu on mobile.
Just make something like this:
Code:
<div class="mobile">
<select id="onlymobile" style="width:100%" onChange="window.location.href=this.value">
<option value="" selected="selected">Click here for menu</option>
<option value="/index.php">» home</option>
<option value="/firstitem.php">» first item</option>
<option value="/seconditem.php">» first item</option>
</select>
</div>
Where css looks like this:
Code:
#onlymobile { display:block; }
.mobile { display:none; }
Adding the class only to your mobile settings.
Bookmarks