0

我在我的网页golfanatics.de的右侧添加了一个垂直横幅位置(div class = "werbe-wrapper")。但是,当使用平板电脑(例如 iPad)或手机查看网站时,不会显示此位置。

该网站基于 Joomla,该模板允许我禁用的响应式布局。

任何想法,我可以在哪里查看,以便显示上述位置?

谢谢和欢呼,拉尔夫

4

1 回答 1

0

在您的 custom.css 中是:

/* Handhelds */
@media (max-device-width: 480px) {
    .nomobilebanner {
        display: none !important;
    }
    ...
}

/* iPad Portrait */
@media screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {
    .nomobilebanner {
        display: none !important;
    }
    .noipadbanner {
        display: none !important;
    }
}

这就是您的问题的来源。

于 2013-04-27T20:13:05.427 回答