Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1481983

    I use both an image and a color background on a color section for most of my site, but the images never appear right with the text on mobile. How can I remove images in the color section on mobile only?

    #1482089

    Hey tsays,

    Thank you for the inquiry.

    You can use this css code to disable the background image of the color sections on mobile view:

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      #top .avia-section {
        background-image: none !important;
      }
    }

    Best regards,
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.