0

I am working in project with mdb free + php. I'm trying to fetch images from database and show them the image src get the path success but the image doesn't shown. in the inspect element the image take "display :none !important" but I can't remove it.

This is my code: enter image description here

Cœur
  • 37,241
  • 25
  • 195
  • 267
HasanAli
  • 19
  • 3

2 Answers2

1

add this in your style.css add it to the last line if this not works reorder your style.css to just before your tag closes think this solve ur problem

.deep-purple-skin img{
            display: block !important;
        }
Arunbal
  • 346
  • 3
  • 16
0

Thank you for all. After many tries the problem solved when i disable adblocker.

HasanAli
  • 19
  • 3