Reply To: How to Remove Background Images on Mobile?

Home Forums Support How to Remove Background Images on Mobile? Reply To: How to Remove Background Images on Mobile?

Home Forums Support How to Remove Background Images on Mobile? Reply To: How to Remove Background Images on Mobile?

#165709
Tom
Lead Developer
Lead Developer

Give this CSS a try:

@media (max-width: 768px) {
    .separate-containers .inside-article, 
    .separate-containers .comments-area, 
    .page-header, 
    .one-container .container, 
    .paging-navigation, 
    .inside-page-header, 
    .sidebar .widget {
        background-image: none;
    }
}

Let me know 🙂