Boxes around captions in gallery?
-
I have been searching for an answer to this for a while now on this forum, but have not found it. Sorry if I have missed it. The static page of my site has a photo gallery with pictures that link to different pages. Under each picture is a caption… I was wondering if there was a way to remove the box around the caption to smooth the website out? Any help would be greatly appreciated. My website is http://www.ochoallc.com
Admin
Add this to the theme’s Custom CSS option:
.entry-content .gallery-caption {
background: none
}Mod
Quote:That would be in graphene options – display – custom css correct?Yes
Quote:but nothing happened.Try refreshing your browser cache: CTRL + F5
Admin
One of the properties in your Custom CSS is missing a closing bracket:
.post-title a:visited {
display: none;
.entry-content .gallery-caption {
background: none
}Mod
Change
.post-title, .post-title a, .post-title a:visited {
display: none;
.entry-content, .gallery-caption {
background: noneto
.post-title, .post-title a, .post-title a:visited {
display: none;
}
.entry-content, .gallery-caption {
background: none;
}Mod
Try
#gallery-2 img {
border: none;
}
Viewing 10 posts - 1 through 10 (of 13 total)
- 1
- 2
- You must be logged in to reply to this topic.