Hi,
On iOS devices (safari) it's not possible to upload images when editing articles (button named "Bild" in my WYSIWYG).
The problem is that you cannot scroll in the image editing window and therefore you cannot reach the upload section on the bottom on the window. In attached image you can see the image editing window that I'm talking about.

Do you have a soloution? Its for the Uber template.

    panduro Hi. Please try add this to css:

    .mce-container-body.mce-abs-layout {
        overflow-y: scroll;
        overflow-x: hidden;
    }

      Sorry, I have changed css but it doesn't help. Just the background scrolls, not the content of the window teitbite

        panduro Hi. Please try this way then:

        .mce-container-body.mce-abs-layout {
          position: fixed; 
          right: 0; 
          bottom: 0; 
          left: 0;
          top: 0;
          -webkit-overflow-scrolling: touch;
          overflow-y: scroll;
        }
        
        .mce-container-body.mce-abs-layout iframe {
          height: 100%;
          width: 100%;
        }
          Write a Reply...
          You need to Login to view replies.