vijaybhai mandaliya vijaybhai mandaliya Author
Title: How to remove Blogger Picture/Image Shadow and Border
Author: vijaybhai mandaliya
Rating 5 of 5 Des:
The default blogger templates show image border and shadow by default so if you want to remove this image border or shadow follow these step...

The default blogger templates show image border and shadow by default so if you want to remove this image border or shadow follow these steps:

 

how to remove borders or shadows around images in blogger blogspot

 

Step 1. Go to Blogger Dashboard  > Template > Customize > Advanced > Add CSS - paste the following code

 

.post-body img, .post-body .tr-caption-container, .Profile img, .Image img,
.BlogList .item-thumbnail img {
  padding: none !important;
  border: none !important;
  background: none !important;
  -moz-box-shadow: 0px 0px 0px transparent !important;
  -webkit-box-shadow: 0px 0px 0px transparent !important;
  box-shadow: 0px 0px 0px transparent !important;
}

 

Now Apply to blog, its remove image border or shadow

 

Alternate

 

Step 2. If the above method doesn't work use this second method

 

1. Go to Blogger Dashboard > Template > Edit HTML

 

how-to-remove-blogger-pictureimage

 

2. Search (CTRL + F) the following code

 

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);

 

3. Delete it and Save the template.

About Author

Advertisement

Post a Comment

 
Top