This topic has 9 replies, 3 voices, and was last updated 5 years, 4 months ago ago by Olga Barlow
I am encountering a couple of problems with the mobile version of the site.
1. https://prntscr.com/nva6hh
The menu bar is too narrow and the buttons on both ends are slightly outside it as a result
2. https://prntscr.com/nva6fs
The mobile menu has a second hamburger icon, which closes the menu. Need to remove this.
3.https://prntscr.com/nva6dc
Footer menu, column 2 and 3 are not left aligned in mobile view
One more thing, the submenu of Helpdesk is not visible in mobile version.
Hello,
Could you, please, provide temporary wp-admin access?
2/ Please add this code in Theme Options > Custom CSS > Global custom CSS:
.mobile-nav-heading i {
display: none;
}
4/
.mobile-nav li .open-child:after,
.mobile-nav-heading.close-mobile-nav:before {
color: black;
}
.mobile-nav li > ul {
background-color: white;
}
.mobile-nav li > ul:before {
border-bottom-color: white;
}
.mobile-nav li > ul {
margin-top: 0px;
margin-bottom: 0px;
}
Regards
Sending you access rights, sorry it took a while to clear with the company. Let me know if the credentials work. The issues remain the same. Tired clearing the cache but that didn’t help. Thanks in advance Rose.
Hello,
We asked you about WordPress Dashboard access but seems you provided something wrong. Please, provide temporary access to your WordPress Dashboard.
Regards
Sorry about that, please try this
Hello,
About this https://prnt.sc/nva6hh – go to Theme Options > Header settings > Enable header overlap > Off, then add this code in Theme Options > Custom CSS > Global custom CSS:
.header-search, .fixed-header-area .header-search {
margin-top: 0px !important;
}
.fixed-already .navbar-header.navbar-right{
margin-right: 10px;
}
and Custom CSS for mobile:
.header-type-9.header-wrapper .header-logo,
.fixed-header-area .header-logo {
top: 5px;
}
Regards
Doesn’t seem to have made a difference to the hamburger mobile menu but the search icon is looking good now 🙂
If you could also help with point 3
https://prntscr.com/nva6dc
The footers are not aligning in mobile view.
Thanks a lot for the support
The admin access is still valid if you need it.
Hello,
You have added the padding-left for the element http://prntscr.com/o6ci4o
So, you have the same padding on the mobile devices http://prntscr.com/o6cidq
Either remove the padding if you don’t need it in element settings or add the custom class for these elements, for eample padding-l-0, and custom CSS that will remove that padding for the mobile devices
@media only screen and (max-width:768px){
.padding-l-0 {
padding-left: 0 !important;
}
}
Regards
You must be logged in to reply to this topic.Log in/Sign up