Anyone know the CSS voodoo to change the font-size of the “Related Posts” heading?
http://wordpress.org/extend/plugins/microkids-related-posts/
Anyone know the CSS voodoo to change the font-size of the “Related Posts” heading?
http://wordpress.org/extend/plugins/microkids-related-posts/
Hi,
You can select a HTML heading element from the plugin's admin interface (h1, h2, etc.). It's in Settings > Related Posts
To customize the heading through CSS, you can use something like
#related-posts h2 { font-size: 11px; }
Note that for h2 you'll have to fill in whatever header type you've selected in the admin.
Doh! Don’t know how I missed that. Thanks Microkid!
By the way, for those that might be interested, I used the following CSS customization to prevent the related posts from appearing indented:
#related-posts li {
list-style: none;
margin-left:0px;
text-align: left;
}Thanks for sharing. Please note that the layout of the related posts depends on the theme you are using.
This topic has been closed to new replies.