Hi patternreplicas
See http://keesiemeijer.wordpress.com/related-posts-by-taxonomy/post-thumbnails/#styling
Try it with this in your (child) theme’s stylesheet (style.css) to make the caption bold:
.related-gallery .gallery-caption {
font-weight: bold;
font-size: 20px;
}
http://www.htmldog.com/guides/css/
btw:
consider creating a child theme instead of editing your theme directly – if you upgrade the theme all your modifications will be lost.
Thanks for coming to the rescue again!
I verified the functions.php and the Style.css in my child theme. I don’t understand why the titles didn’t change.
https://drive.google.com/file/d/0BwA1IuXMUSGIa3JPcVdpSVVWb1k/view?usp=sharing
https://drive.google.com/file/d/0BwA1IuXMUSGIZFVOWXM1OTNnSTg/view?usp=sharing
Can you guess what could it be?
Don’t put the css inside /* */
Just paste the code as is underneath the child theme header.
Thank you! It worked! : )
Any idea why it doesn’t work to set a different color? I added 2 other lines in the css –
line-height: 110%;
color: #316272;
– and only the color one didn’t work.
And how to remove the underline? I would like to make it respond in the same way as the rest of the website’s posts titles: have the same color (now is set to a blue, not underlined) and to turn orange when hover.
Can you help me with these?
Try:
.related-gallery .gallery-caption a {
color: #316272;
}
This is what I have in the style.css from the child-theme:
.related-gallery .gallery-caption {
font-weight: bold;
font-size: 20px;
line-height: 110%;
}
.related-gallery .gallery-caption a {
color: #316272;
}
It didn’t work for the color. Any suggestions?
Try
.related-gallery .gallery-caption a {
color: #316272 !important;
}
Without taking a look at the site itself there is not much more I can do to make this work.
To remove the underline try.
.related-gallery .gallery-caption a {
color: #316272 !important;
text-decoration: none;
}
Hi!
It worked! thanks!! And I’m really glad cuz I was just realizing that it could be because of the Personalize Theme options which had the links color set to orange. This way I wont need to change all links on the site but only these titles. I’ll try it one more time but it seems to be ok : )
Thank you once again for being there!
No problem. I’m glad you have it looking the way you want 🙂