Hi @kelw ,
if you want to upload an image you have to upload it to one of the image upload services and paste the URL here, I suggest https://imgbb.com/ .
Regarding that you want to hide the slider on the mobile version this is currently only possible on the PRO version. Because the PRO version supports separate options for desktop, tablet and mobile. So in the PRO version you can set the size of the desktop slider separately, and set the size to ‘0’ on the mobile, that is, it will hide the mobile slider. For this reason, you have been told by the developer to obtain the PRO version. So it is also written in the table of features that support the free version, and which PRO version.
I can give you advice that is not fully specified as correct but more like a hack on how to do what you want. With this CSS you will hide all our sliders on the mobile version.
@media (max-width: 1039px) {
.slider_instance {
display: none;
}
}
Have a nice day!