0

i need to remove this image form the frame and i tried this code but did not work

.trevda-wide img {
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: 100%;
    display: none !important;
}

this is the link of the site http://saledirection.com/aldfsj.html the image

1 Answers1

0

Is the one you want to delete is this image? enter image description here

If that the case then you can put display: none instead of display: block in the .trevda-wide img: enter image description here

It works here, but if it somehow didn't work try putting display:none!important; this will make sure that the image is displayed as none.

samAlvin
  • 1,648
  • 1
  • 11
  • 35