Page 1 of 1

Website Responsive Bug

Posted: Wed May 22, 2019 10:36 am
by zulnam
Posting this here since I can't find any other place to put it; the Bug Tracker seems to be exclusively for in-game issues.

The website homepage is broken on mobile devices due to the video iframes in the news sections.

Reason:
<iframe width="570" height="320" [...]

Solution:
delete width and height for all video iframes, replace with

<iframe class="homepage-videos"

In main/homepage css file add:

.homepage-videos {
width: 100%;
height: 320px;
}