Showing posts with label image shadow effect. Show all posts
Showing posts with label image shadow effect. Show all posts

Monday, April 4, 2016

How to disable image shadow effect on Blogger

Reference: http://ielselog.blogspot.com/2013/04/dvimgborder.html

I don't know why enable image shadow effect on my blog. Anyway I can disable that option by hand in CSS code adding on my template.

Simply you can add this code on "Blogger template designer" -> "CSS adding".:
.entry-content img{  
 box-shadow: none !important;  
 padding: 0px !important;  
 border: 0px !important;  
 }