Hi,
This is a customization, you could add in your css something like this
.latest-post-selection article .tags {
display: inline;
}
The selector for the articles is .latest-post-selection article, so you can change the appearance for this how you want, changing the border and the color, like for any other element.
Awesome! That worked. Thanks
I found that posts with no tags would still cause the Read More link to be outside of the container.
I dug around and I managed to find a solution. Add this to your CSS underneath th code posted above:
.latest-post-selection article .clear {
clear: both;
}
Cool! It depends a lot on your theme CSS and other customization you do.