I am brand new to this. I got the impression that I can copy the Chunk CSS and omit the part that creates the border around photos - is this true? Can you help?
The blog I need help with is birchandbean.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 brand new to this. I got the impression that I can copy the Chunk CSS and omit the part that creates the border around photos - is this true? Can you help?
The blog I need help with is birchandbean.wordpress.com.
What you want to do is to put into the CSS edit window only the specific selectors, and the specific declarations that you are changing. If you are not changing something then don't add it, and do not paste the entire stylesheet into the edit window. You can copy the existing CSS and put it into a plain text file for reference.
Add this to the CSS edit window to get rid of the image borders in galleries.
.gallery img {
border: none !important;
}
To get rid of the border on regular images, add the following to the CSS edit window.
.entry-content a:hover img, .entry-content a img {
border: none;
}
Thank you!! Done & Done.
You are welcome.
This topic has been closed to new replies.