I am trying to remove a white border from a png image widget. Help? I just want the png with no border!
The blog I need help with is sewcreativedesigns101.wordpress.com.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
I am trying to remove a white border from a png image widget. Help? I just want the png with no border!
The blog I need help with is sewcreativedesigns101.wordpress.com.
To remove the background color, border, and box shadow from all images in the sidebar in the Fruit Shake theme, try adding this to your Appearance → Custom Design → CSS page:
#secondary img {
background: none;
border: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}
This topic has been closed to new replies.