Remove dividers in header and top bar
-
Hi,
Is there a way to remove the vertical dividers between the login menu and search/cart icons in the header?
And also the top bar?
And also how to change colour of the horizontal lines between the header and top bar?
Many thanks
Hello,
Use the following code snippet to remove the divider. As we can see, you don’t have the to bar now
.header-shop .right-column .header-links {
border-right:0;
}
Regards
Thanks, I put it in the custom CSS but it still showing?
Try to replace with this one
.header-shop .right-column .header-links {
border-right: 0!important;
}
That one works 🙂
Thank you!