Hello Ronald,
You just have to play a little bit with the classes, you can create a new css file and save it inside your main theme folder, then add some css classes there to style the output the way you want it, for example I created a file called test.css (inside my active theme folder) then I used the styling below:
.nlposts-ulist-container .nlposts-ulist-thumbnail-litem a > img {
display: block;
padding: 4px;
line-height: 1;
border: 1px solid #ddd;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
max-width: 100%;
float:right; /* put the thumbnail on the right */
top:3% !important;
filter: gray; /* IE6-9 */
-webkit-filter: grayscale(1); /* Google Chrome & Safari 6+ */
opacity: 0.7;
}
.nlposts-ulist-container .nlposts-ulist-thumbnail-litem h3 {
float:left !important;
margin-top: -90px !important;
width:80% !important;
}
.nlposts-ulist-container .nlposts-ulist-thumbnail-litem ul {
float: left !important;
margin-left: 0 !important;
margin-top: -50px !important;
width:80% !important;
}
.nlposts-ulist-container .nlposts-ulist-thumbnail-litem .nlposts-ulist-meta {
float:left !important;
margin-top:-65px !important;
font-size:12px !important;
}
Then I used this shortcode: [nlposts title_only=false thumbnail=true css_style=test excerpt_length=22 full_meta=true sort_by_date=true]
, you can see the results here: CSS Test.
Of course those margins will depend on your thumbnail sizes and the text length, however you have something to get started, and remember when you use a custom css file it will affect all NLPosts instances within the same page.
Cheers.