Wednesday 27 October 2010

Remove border around image uploaded in blogger - blogspot

This is easy to change! You will look for the code that you wish to change, which is .post img code in the CSS style sheet. How to completely REMOVE the border that appears around a posted photo within a post on Blogger??

Look for code with post img  in your template code -
post img {
padding:4px;
border:0px solid $bordercolor;
}

OR

.post img {
margin: 5px;
padding: 5px;
background: $imagebgColor;
border: 1px solid $imageBorderColor;
}

Change this line to read:
.post img {
padding:4px;
border:none;
}

No comments:

Post a Comment