- This topic has 2 replies, 2 voices, and was last updated 1 year, 11 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.


Home › Forums › Pro Themes › Easy Commerce Pro › remove horizontal bar behind the menu on mobile
On mobile, the menu icon is indicated by three horizontal bars on a black bar that goes all across the screen at the top of the screen. It does not move, it’s there all the time. How can I remove this black bar?
Thank you
You mean the burger menu that shows on the small devices to access the menu. I guess it is not a good idea to hide that menu, instead, we can remove the sticky of that element so that it moves up when scrolling the content.
Here is an example of that
https://www.awesomescreenshot.com/video/22776555?key=9d6550414f8193d2c6b320a955169c16
Please add this CSS in the Additional CSS
@media only screen and (max-width: 900px){
.mobile-nav-wrap{
padding: 10px;
position: relative;
}
a#mobile-trigger {
float: none;
text-align: left;
}
#page {
margin-top: 0px;
}
}
That is just perfect. Thank you very much.
| Cookie | Duration | Description |
|---|---|---|
| cookielawinfo-checkbox-analytics | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics". |
| cookielawinfo-checkbox-functional | 11 months | The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional". |
| cookielawinfo-checkbox-necessary | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary". |
| cookielawinfo-checkbox-others | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other. |
| cookielawinfo-checkbox-performance | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance". |
| viewed_cookie_policy | 11 months | The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. |



