codeblue2k
Member
Posted 3 years ago #
I am migrating my photos to a new website/domain and am using the plugin Picasa Image Express to place some photos in my posts.
I have two different themes on both sites. One of which you can see a border around the photo and caption: http://www.onetechmind.com/blog/index.php/2009/04/our-trip-to-key-west-and-miami/
On the new site you cant see the border: http://takingabeachday.com/blog/2009/04/17/8/
Is this border created by the theme or the plugin? Anyone know how to change the color?
codeblue2k
Member
Posted 3 years ago #
Answer: Theme's style.css
In your old theme's style.css you have the following:
wp-caption {
background-color:#F3F3F3;
border:1px solid #DDDDDD;
margin:10px;
padding-top:4px;
text-align:center;
}
In your new theme, you only have the following:
.wp-caption img {
margin:0 !important;
}
So you might like to replace your new theme's style for .wp-caption in style.css with the old one if that is your preference.
codeblue2k
Member
Posted 3 years ago #
thanks for the help...
I see the wp-caption call in the original theme. But im digging thru the CSS of my new theme and I cant seem to find
.wp-caption img {
margin:0 !important;
}
I looked thru every CSS associated with the new theme
codeblue2k
Member
Posted 3 years ago #
So I found this post that seemed to fix my issue. But I wouldnt have known it was a theme issue without your help. Thanks!
http://wordpress.org/support/topic/189152?replies=13