Viewing 6 reply threads
You must be logged in to reply to this topic.
The menu button is not showing on mobile, and I need it to.
Hello,
Please send to me your online link so I can give you the exact code to show it online.
Regards!
Also, we need the mobile menu to show from 0px wide to 1180 px wide.
Hello,
You can make that by adding this by Specular > General > Custom CSS Box:
@media (max-width: 767px){
.header_button {
display: block !important;
left: 7px;
font-size: 12px !important;
}
}
in case the issue persists you have to edit the file wp-content/themes/specular/css/bootstrap-responsive.css and find the line :
@media (max-width: 767px)
.header_button {
display: none !important;
replace with:
@media (max-width: 767px)
.header_button {
display: none !important;
Also about the menu, you have to add the lines below:
@media (max-width: 1180px)
#navigation {
display: none !important;
}
@media (max-width: 1180px)
.mobile_small_menu {
display: block;
}
Regards!
You must be logged in to reply to this topic.