Viewing 3 reply threads
You must be logged in to reply to this topic.
I have a list of problems. It would be a great help if you can support me. There is a screenshot for each theme:
Support 01
The navigation menu is not centered correctly.
Support 02
In responsive mode, the header changes.
The background is no longer transparent and a dark line emerges.
Support 03
In responsive mode there is no color change at hover.
Support 04
In mobile mode the logo is not centered.
I look forward to your answer
Hello,
1-The menu is centered if you measure it with the header width, not the position of the logo above. However, you can always edit it’s position to your wish. Add this code itno your custom css box:
.header_10 #navigation nav {
left: 53% !important;
}
Result screenshot. Edit the value to your wish.
2-This is the mobile header. It is set up to fit the width of a mobile screen so it is different from the desktop version. To make the background transparent please add this code into your custom css box:
@media (max-width: 979px){
.header_wrapper {
background: rgba(255, 255, 255, 0) !important;
}}
3-Again, this is due to the default layout of mobile menu. To change the color of mobile menu item on hover, please add this code:
.menu-small ul.menu > li > a:hover {
color: #f5e841 !important;
}
Change the color to your wish.
4-Add this code:
@media (max-width: 979px){
.header_10 #logo { left: 41% !important;}
}
Let us know.
Best regards!
Great support! Many thanks for your help.
All topics are solved.
5 Stars (*****)
Thank you very much for your rating! It’s very important for us.
Best regards!
You must be logged in to reply to this topic.