Cart and LangSwitcher Horizontal align

Posted in: Newspaper
Post count: 10

Hello, I’m usig the 2 Plugins, WooCommerce Menu Cart and WMPL(Language Switcher Menu) both are setup in the TopMenu of my Theme but on Mobile version it is not Horizontal Align it is LangSwitcher newline ShopingCart any options to fix this with CSS?

Preview Mobile Version

My Site: My Website

Post count: 22421

Hello,

You cna try adding this custom css to your theme panel under custom code:

@media (max-width: 767px){
.td-wpml .menu-top-container {
width: 100%!important;
}
.top-header-menu{
display:flex!important;
}
.td-wpml .menu-top-container .wpml-ls-item.menu-item-has-children .sub-menu{
right: auto!important;
left: 0!important;
}
}

Thank you!

Post count: 10

Thank you so much now it looks fine, but since i add this CSS the Cart on Mobile is not Clickable any idea why?

Post count: 22421

hello,
indeed it gets a css value to remove the pointer events. Please replace the code with this one:

@media (max-width: 767px){
.td-wpml .menu-top-container {
width: 100%!important;
}
.top-header-menu{
display:flex!important;
}
.td-wpml .menu-top-container .wpml-ls-item.menu-item-has-children .sub-menu{
right: auto!important;
left: 0!important;
}
.td-wpml .menu-top-container .wpml-ls-item.menu-item-has-children > a{
pointer-events: all;
}
}

Thanks

Post count: 10

Sorry for needing Help again but when I add this CSS the LangSwitcher and the Cart are not clickable anymore (I can click it but not direct on the items, a lil bit untder it, it is very buggy)

Any way to fix this? Thank you

Post count: 20688

Hi,

I tried to access the website, seems to be unavailable at the moment
https://www.screencast.com/t/gfijcp8sW
Please let us know when we can check.

Thanks

Post count: 10

Website is online again, can anyone please check it? Thank you

Post count: 20688

Still can’t access it, it’s the maintenance mode. You can send us an email at contact@tagdiv.com and provide the login details so we can access it.
Please include a link to this topic in the email.

Viewing 8 posts - 1 through 8 (of 8 total)
The forum ‘Newspaper’ is closed to new topics and replies.