Passa al contenuto principale
Menu
Negozio
Consegna
Contattaci
function omExpandEcwidDescription() { var style = document.getElementById("om-expand-ecwid-description"); if (!style) { style = document.createElement("style"); style.id = "om-expand-ecwid-description"; style.textContent = ".product-details-module__content--collapsed{" + "max-height:none!important;" + "height:auto!important;" + "overflow:visible!important;" + "}" + ".product-details-module__btn-more{" + "display:none!important;" + "}"; document.head.appendChild(style); } var blocks = document.querySelectorAll(".product-details-module__content--collapsed"); for (var i = 0; i < blocks.length; i++) { blocks[i].style.maxHeight = "none"; blocks[i].style.height = "auto"; blocks[i].style.overflow = "visible"; } var buttons = document.querySelectorAll(".product-details-module__btn-more"); for (var j = 0; j < buttons.length; j++) { buttons[j].style.display = "none"; } } omExpandEcwidDescription(); setInterval(omExpandEcwidDescription, 1000);