Home › Forums › WoodMart support forum › Multilanguage › Reply To: Multilanguage
March 1, 2023 at 3:11 am
#447234
Elise Noromit
Member
Hello,
Please add this code to the Theme Settings > Custom CSS > Global:
.hide-larger-price .price > .woocs_price_code {
word-spacing: -1em !important;
visibility: hidden !important;
}
.hide-larger-price .price > .woocs_price_code *:not(.price) {
word-spacing: normal !important;
visibility: visible !important;
}
.hide-larger-price .price > .woocs_price_code > span:nth-child(2) {
display: none;
}
.hide-larger-price .price > .woocs_price_code > ins,
.hide-larger-price .price > .woocs_price_code > small {
margin-left: 4px;
}
.browser-Safari .hide-larger-price .price > .woocs_price_code {
white-space: nowrap;
}
.browser-Safari .hide-larger-price .price > .woocs_price_code >ins,
.browser-Safari .hide-larger-price .price > .woocs_price_code >small {
margin-left: calc(1em + 4px);
}
.browser-Safari .hide-larger-price .wd-sticky-btn-cart .price > .woocs_price_code {
white-space: nowrap;
}
Best Regards