Hi,
Also is it possible to a 5px coloured border on the bottom of the tiles?
You can apply this on the WPSP list by adding this CSS:
.wp-show-posts-inner {
border-width: 0 0 5px;
border-style: solid;
border-color: #00aeef;
}
On the I’d like to show the name on my post tiles which the plugin does perfectly. But how can I put the word ‘by’ in front of the name?
Do you mean before the name? If so, try adding this CSS:
.wp-show-posts-author span.author-name:before {
content: "by ";
}