Hide action bar and social menu on mobile devices
How do I hide the action bar and social menu on mobile devices.
I tried adding
.header-classic #Action_bar .contact_details li, .header-classic #Action_bar .social, .header-classic #Action_bar .social-menu {
display: none;
}
But it's not working
Here's a link
http://dev.prnomegahealth.com/
I tried adding
.header-classic #Action_bar .contact_details li, .header-classic #Action_bar .social, .header-classic #Action_bar .social-menu {
display: none;
}
But it's not working
Here's a link
http://dev.prnomegahealth.com/
Comments
@media only screen and (max-width: 767px) {
#Action_bar { display: none; }
}
@modus please use the code provided by @davidstokes and this is the most proper css.