Thanks Simon. My previous posting highlighted a WP 3.5 issue with a Pagelines plugin (mobile menu):
Please Login or Register to see this Hidden Content
In fact I think you kindly identified it for me. I assume that if I buy the plugin from Pagelines that it's a Pagelines plugin. Or is it third party?
Not sure what the new bootstrap menu is. Where would I find it?
Anyway, am using code generated by Pagelines plugin Sexy Snips to centre navigation on the web version, and media query to left-align the nav on mobiles. Any tips on how to change this code so that the navigation works on mobiles would be very welcome! Here's the code:
/* Centered Navigation */
#page {
#navbar,
#nav{
.navline,
.main-nav{
float:none;
text-align: center;
li {
display:inline-block;
float:none;
text-align:center;
a {
float:none;
text-align:center;
}
}
}
.dropdown-menu {
text-align:left;
}
}
}
/* Centered Navigation Media Query*/
@media(max-width:767px){
body.pagelines {
#page {
#navbar {
.navline {
float:none;
text-align:left;
li,a {
display: block;
float: none;
text-align: left;
}
}
}
}
}
}