cenkmix adlı üyeden alıntı: mesajı görüntüle
Merhabalar bu css kodundaki görseli mobilde gizlemek için ne yapmalıyım ?

.pageskin {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: url(images/bg.jpg) #000 no-repeat center top fixed;
            background-size: 1920px 1080px
        }
Merhaba,

div içerisine nomobile ekleyin ( örnk: <div class="pageskin nomobile">

css kısmına

@media screen and (max-width: 600px) {
    .nomobile {
position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background-size: 1920px 1080px
    }
}