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.
Asked
Active
Viewed 70 times
0
-
4Don't post code as an image. Copy/paste the code into your question. – M. Eriksson Mar 26 '18 at 06:42
-
Is your images folder located inside the folder you are now in? – Adarsh Mohan Mar 26 '18 at 06:46
-
Try accessing the image through browser and check the urls – Adarsh Mohan Mar 26 '18 at 06:46
-
I Tried accessing it from my browser it shows correctly but the problem Still – HasanAli Mar 26 '18 at 07:26
-
can you show hierarchy of your project? – Nihal Mar 26 '18 at 08:19
2 Answers
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
-
I tried it but doesn't work and try to put it like
But still disapear – HasanAli Mar 26 '18 at 07:25