Archived topic
Menu border – cart and search icons
3 replies · Started by Rene Nekuda on November 30, 2020
Hello, I have set up borders to my menu in the GP Pro settings, but these lines are not included for auto-generated icons for cart and search. Please, can you help me to make it for all items in my menu? Thank you very much!
Screenshot: https://renenekuda.d.pr/3hweRt
Rene
Hi,
This issue happens because the menu items and the menu bar items are 2 completely different sets and the border is only applied to the primary menu.
That said, try this CSS:
@media(min-width:769px){
.inside-navigation.grid-container {
border-top: 2px solid #eee;
border-bottom: 2px solid #eee;
max-width: 1280px;
width: fit-content;
padding: 0 0 !important;
}
}
@media(max-width:768px){
.inside-navigation.grid-container {
width: 100%;
}
}
Elvin, thank you very much, it is workig! :)
No problem. Glad its working for you. :)