After many hours of debugging I seem to have solved the display problem by adding a bit of custom CSS to over-ride the following
.ultp-block-wrapper {
position: relative;
display: inline-block;
}
replaced with
.ultp-block-wrapper {
position: relative;
display: block;
}
This solves the display issues with the live page mentioned, but I am still unable to add a new slider via the editor, this still does not function.
Additionally I have noticed that the display of images using the Image Block, are now also displaying correctly,…Images are inserted with an alignment of center, but were displaying with a left alignment (See blog posts) after recent update. With the custom CSS the images are now correctly aligned.
-
This reply was modified 3 years, 4 months ago by MarkvanJaarsveld. Reason: Additional info