Hi @jesuswitker
As for the missing background images:
Have you managed to fix this problem? Since I checked the linked page, and in my case the background images appeared fine on all slides.
But I noticed that, a third party actually modified the HTML of your slider, as there are third party attributes on our images that shouldn’t be there, also there is a noscript tag added below the img tag. This is usually done by third party image lazy loading. So I find it possible that you have a plugin that tries to lazy load our images, too.
Generally third party lazy loading just causes problems for our images, so you should exclude our images from their lazy loading, e.g.:
by the following class name:
or by the following data attribute:
As for the arrow image:
The arrow images won’t show up as their HTML was also modified by something and messed up the value of the src attribute. If you inspect that image, you will see an base64 image source with a value starting like this:
image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzI...=
but that is wrong, as base64 image sources should start rather like this:
data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzI...=
I can see the same noscript tag with the working img HTML below this, too. So I find it possible that this problem is caused by the some lazy loading plugin, that caused problems for the Slide background images. Excluding either the class or the data attribute should fix this problem, too.
Content is unreadable in mobile view:
The problem is that you added the layer ( that contains the texts ) with Absolute position:
However, absolute position is not meant for content, but just for decoration, as absolute positioned layers are just floating on the slide, hence they won’t affect to the height of the slider meaning that if your content is too high, it might appear off screen. Also when the aspect ratio of your slider changes, the absolute positioned layers can appear in a different position.
Content should be built always with Default position. So to avoid this issue, you should make your absolute positioned layers to default:
that way the content would affect to the height of your slider as well, meaning that it wouldn’t appear offscreen anymore.
Tip: Some of your texts are very long, which can make your slider in mobile view pretty high. If you want to avoid that, you could set a fix height on the Text Layer that contains the long text, by using the “Height” field on the Style tab:
and then you should set the “Crop” setting to “Scroll”:
this way the overflowing parts of the text could be scrolled.
Best regards,
Laszlo.