Is someone else also having problems with applying the “scale” property in the editor’s “Custom CSS”?
I was trying to scale up the social media icons in the footer: .footer__list-social { scale: 1.2;} and create a little animation on hover over our logo: img {transition-duration: 1s;} img:hover {scale: 1.08;}. It correctly displays in the editor, but I can’t save the changes anymore. I instead receive the error message: “Online Store editor can’t be published”.
Any ideas how to make it work or how to create the same results without using “scale”??
I do not think it was the scale css, I was able to use scale in the custom css. You might want to refresh your browser. Try using incognito browser and if the problem still persist
Didn’t change anything. I believe I was able to fix it myself. It was just a syntax problem: I now use scale together with transform → img:hover {transform: scale(2);}. Seems to be working out now. Thx anyways for the fast replies!