[ad_1]
Hi @alundra
Just to confirm this 100% – this is happening for WooCommerce product descriptions, correct?
Thanks!
Yep only in there 🙂
I can’t even see a media button on my other pages etc, but Woocommerce uses the other editor.
- This reply was modified 26 minutes ago by Alundra.
Hi @alundra
Managed to reproduce this and noted the information down for our devs. I’ll get back to you as soon as I have something. 🙂
Thanks!
Hi @alundra
So I’ve discussed this with the team and unfortunately, this is related to the legacy Tiny MCE editor which is slowly losing support.
Though, this should be an easy CSS fix for a case by case basis. Please copy paste the following snippet into the Additional CSS pane of the Customiser and things should start looking better.
.gallery {
display: grid;
grid-gap: 15px;
}
.gallery-columns-2 {
grid-template-columns: repeat(2, 1fr);
}
.gallery-columns-3 {
grid-template-columns: repeat(3, 1fr);
}
.gallery-columns-4 {
grid-template-columns: repeat(4, 1fr);
}
.gallery-columns-5 {
grid-template-columns: repeat(5, 1fr);
}
.gallery-columns-6 {
grid-template-columns: repeat(6, 1fr);
}
.gallery-columns-7 {
grid-template-columns: repeat(7, 1fr);
}
.gallery-columns-8 {
grid-template-columns: repeat(8, 1fr);
}
.gallery-columns-9 {
grid-template-columns: repeat(9, 1fr);
}Hope this helps!
Thanks.
