Hi Daniel,
I’m not sure exactly what the problem is. However, after inspecting the element, i discovered you href the link with short url
i.e. “/impressum/”, why the web browser may render this correctly, there is no assurance that the mobile can do the same
try replacing the href with full url i.e. “https://schwarzbaecker.com/impressum/”
Good luck
Hi, I cannot say exactly why you are experiencing the problem. however, i suggest two approach which can fix the problem;
1. try resize image to exactly 1000×300 before uploading, you can use web app such as http://www.simpleimageresizer.com/ , http://resizeimage.net/, http://www.online-image-editor.com/
2. If you are comfortable with CSS, i suggest you place image in a container. Inspect the element to find the ID and place the image in a container
for example; #image-container{
border:5px solid black;
width: 500px;
height: 300px;
margin: 0 auto;
padding:20px;
} It will resize the entire image and fit it into the container.
I hope you are able to fix the bug