abigfun
Forum Replies Created
-
You are great! alchymyth,
Many thanks for your quick helpful tips. They are working perfect for me.
I am very sorry for late response, as I submitted by mistake dupicated question in two fields of the forum.
I noticed that you are of best experts solved many questions about custimization on WordPress. It’s grest to have you guys here in this forum.
Problem resolved.
TO W.P. Ginfo,
Many thanks for your kind patience and reply, really informative and helpful.
Yes, you said it, custimization a theme is really a brain teasing puzzle for me.
Your solution works almost perfect for me. When I added the following lines:
.wp-caption {
background: none;
}It does work mostly, the image borders, originally grey bars, in page and post are changed into slim grey lines. And the black-barred image borders in Home and Categlry still stay there.
Then I added “!important” to your code, and got very good luck. The image borders in home page and category disappeared.
While the image borders in individual page and post remains in slim grey lines. I tried to change some code values and found it’s done!
Finally, my customization is as following:
/* Image borders */
img[class*=”align”],
img[class*=”wp-image-“],
img[class*=”attachment-“]
#content .gallery .gallery-icon img {
border: 0px solid rgb(0, 0, 0);
}
.wp-caption {
background: none !important;
}
.wp-caption img{
background: none !important;
}Thanks again for your epertise, kindness and time.