I need help aligning the Woocommerce cart to the right but keep the nav links to the left along with the logo.
Hi Dayana,
Please add the CSS code below to X > Theme Options > CSS:
@media (min-width: 980px) {
.masthead-inline .desktop .x-nav {
float: left;
width: calc(100% - 95px);
margin-left: 20px;
}
.x-navbar .desktop .x-nav > li.x-menu-item-woocommerce {
float: right;
}
}
1- I have found the proper CSS code selector using the Chrome browser Developer Toolbar:
2- For the CSS code itself, I suggest that you get started with this tutorial:
Thank you.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.