Removing the border around images.
-
I am working on a website, http://www.ochoallc.com
One thing I have not been able to make happen is removing the borders from the images on the home page. I looked in the forums and faq, used every code I saw, and the borders still haven’t gone away. I am currently using:
.entry-content img{
border:0px solid #000000;
margin:5px;
}to no avail. Any suggestions?
Try this to remove border around those home page images,
#gallery-2 img {
border: 0;
}Try this code in your Custom CSS under Graphene options.
.entry-content img {border:none;}Quote:Try this code in your Custom CSS under Graphene options..entry-content img {border:none;}
It works on my website.
Try this,
.entry-content img, .wp-caption {
border: none;
}Thank you for all the help, but neither of those worked either… This is all the code I currently have in the custom css box:
.post-title, .post-title a, .post-title a:visited {
display: none;
}
.entry-content .gallery-caption {background: #000000;}
#developer {
display: none;
}
.entry-content img, .wp-caption {
border: none;
}Maybe something is conflicting?
Add this:
#gallery-2 img {
border: none !important;
}Try this,
.entry-content img, .wp-caption {
border: none !important;
margin: 0;
}
Viewing 10 posts - 1 through 10 (of 10 total)
- You must be logged in to reply to this topic.
