Hello! It works! But I am not too happy with the way the thumbnail and the title display: there is the “dot” of the li overlapping on the thumbnail and also the alignment is not as I expected it. I would like to either center the title or have it at the bottom, compared to the thumbnail. Hope I managed to explain myself! I leave you with a screenshot and with the code I use (I am no expert in css maybe I made a mistake!). Thanks a lot and a good day to you ??
screenshot
This is the shortcode in the post:
[catlist name=”diario dieta mese per mese” orderby=date order=asc numberposts=-1 thumbnail=yes thumbnail_class=lcp_thumbnail thumbnail_size=80,80 title_class=”lcp_titleblock” ]
These are the classes I added:
/* GB 29-11-2013 – */
/* styles for the plugin “List category posts” to display date and title in different sizes than the default ones */
.lcp_date{
/* display: block; */
font-size: smaller
/* font-weight: bold; */
}
.lcp_title{
/* display: block; */
font-size: larger
/* font-weight: bold; */
}
.lcp_titleblock{
display: block;
font-size: larger
/* font-weight: bold; */
}
/* GB 05-12-2013 – */
/* styles for the plugin “List category posts” to display thumbnail before title */
.lcp_thumbnail{
float: left;
}
.lcp_catlist li{
clear: both;
}