4/07/2011

How to remove border and shadow of your blog images

4/07/2011

For those who are using Blogger's Simple Template, you will have a problem where all images on your post will have weird borders and shadows which does not suit your blog theme. I will guide you on how to remove the borders and shadows to give your blog a clean look. 

1. Go to Template and click Edit HTML
2. Search for this codes: 
 background: $(image.background.color);
3. Now look under the codes you have searched, you will see something similar to this:
border: 1px solid $(image.border.color);
-moz-box-shadow: 1px 1px 5px rgba(0, 0, 0, .1);
-webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, .1);
box-shadow: 1px 1px 5px rgba(0, 0, 0, .1); 
4. Remove those codes and you are all done.

Goodluck :)