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?

#106722
Tom
Lead Developer
Lead Developer

As the background image is set inline, you’ll have to use !important in your CSS.

@media (max-width: 960px) { 
      #generate-section-3, .your-unique-section-class {
            background-image: none !important; 
      }
}