Hi,
I have posted a problem I had with 2 third party plugins before but unfortunately it was outside the scope of your support.
My problem was that I couldn’t display the 2 plugins in the product page next to each other. I tried so many different css codes but it wasn’t working. So I’ve finally found a solution with custom js.
The problem is that the custom js doesn’t work in Safari browser but works with all other browsers.
Could you load the page in both safari and another browser and see the issue?
The custom js code I’ve used is the one below:
document.onreadystatechange = function(){
if(document.readyState === 'complete'){
setTimeout(function () {
var x = document.getElementsByClassName("mspc-wrapper");
x[0].style.styleFloat = "none";
x[0].style.cssFloat = "none";
}, 3000);
}
}
Could you please let me know if it’s an issue with the Safari browser?
Thanks in advance.