http://hopkins-lab.org/category/news/
How do I customize the category listing? I do not want any images, I do not want any meta data except the date, and I want to modify the size of the fonts, and align it all left, etc.
Hi Nancy!
Add this to your custom CSS.
.archive .blog-meta {
display: none ! important;
}
.archive .entry-content-wrapper {
float: left;
}
.archive .post-meta-infos span { display: none !important; }
Regards,
Elliott
thanks. this is very helpful. I would like to make further changes – such as with the spacing, etc. How might I do that? Is there another way, or is adjust the CSS the best approach?
Hi!
Yes, using CSS is the best approach. I would check out Firebug, https://getfirebug.com/, for Firefox. It makes it very easy to view the CSS and edit it on your site.
Otherwise take a screenshot and highlight what your trying to do so we can get a better idea.
Best regards,
Elliott
how do I change the heading “Posts” on this page? Either remove it or change it to another word, like “Publications”
http://hammes-schiffer-group.org/tag/ribozyme/
And how can we indicate which tag was used to generate the listing?
Hi!
If you want to remove it then add this to your custom CSS.
.tag-page-post-type-title { display: none !important; }
If you want to change it then you can find it on lines 56 and 96 in /enfold/tag.php.
echo "<h3 class='post-title tag-page-post-type-title'>".$label."</h3>";
Regards,
Elliott