hello,
i want to align the cart icon on the mobile icon to left instead of centered.
how to?
using latest pro theme.
live: https://rastoa.oblaum.com/
thanks
oli
hello,
i want to align the cart icon on the mobile icon to left instead of centered.
how to?
using latest pro theme.
live: https://rastoa.oblaum.com/
thanks
oli
Hi Oli,
Thanks for reaching out.
I’m seeing a CSS which I’m not sure where coming from, it’s a flex styling on standard menu items. If not, you can override it by adding this CSS
@media ( max-width: 979px ) {
.x-navbar .x-nav>li.x-menu-item-woocommerce>a .x-cart>span {
justify-content: flex-start;
align-items: flex-start;
}
}
Please note that we don’t provide and maintain customization here in the forum, what I provided is the idea on how to achieve it through @media
, and specifically change alignment per breakpoints.
Thanks!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.