如何在Windows Phone上隐藏此特定的移动图像?

时间:2017-09-19 05:11:35

标签: css wordpress mobile

我无法弄清楚如何隐藏用于我的年龄验证弹出窗口背景的移动设备的徽标图像。以下是有问题弹出式徽标的网站:http://rocketcannabis.com/?itro_preview=yes

我与以下代码非常接近,但我不知道如何隔离图像,我只能用#itro_popup类隐藏整个pop,我只想隐藏在手机上的图像,而不是整个弹出窗口:

@media only screen and (max-width: 768px) {
#itro_popup {
 display: none;
}

2 个答案:

答案 0 :(得分:2)

使用background-image: none

@media only screen and (max-width: 768px) {
 #itro_popup {
   background-image: none;
 }

答案 1 :(得分:-1)

尝试将!important添加到display:

@media only screen and (max-width: 768px) {
#itro_popup {
  background-image: none !important;
}