Hi, yes it’s possible with some CSS tweaks. I’ve created a style to display posts in 3 columns with centered thumbnails over the title, check this screenshot: Example Screenshot
The stylesheet can be downloaded through this link > slposts_threeColumns.css
Save the CSS file to your WordPress theme active folder (where style.css is found), then add to your shortcode the css_style parameter like this:
[slposts title_only=false
thumbnail=true
auto_excerpt=true
css_style=slposts_threeColumns
]
CSS rules used to do this (included in the slposts_threeColumns.css file) are found below:
/*\
* =========================
* | |
* | ++ Blocks ++ |
* | |
* =========================
\*/
/*\
* -----------
* | Content |
* -----------
\*/
.slposts-container
.slposts-block-wtitle {
font-size: 1.3em;
border-bottom: 1px dotted #efefef;
}
.slposts-block-title a {
font-size: 1.4em !important;
text-decoration: none;
}
ul.slposts-block-thumbnail {
list-style: none !important;
margin: 0 auto !important;
text-align: center;
}
.slposts-block-item {
float: left;
width: 30%;
margin-right: 10px;
margin-bottom: 20px;
}
.slposts-block-item .slposts-caption {
text-align: left;
}
.slposts-block-thumbnail a > img {
border: 1px solid #efefef;
padding: 3px;
margin: 0 auto;
}
.slposts-block-thumbnail a > img:hover {
-webkit-box-shadow: 1px 1px 3px rgba(99, 175, 208, 0.15);
-moz-box-shadow: 1px 1px 3px rgba(99, 175, 208, 0.15);
box-shadow: 1px 1px 3px rgba(99, 175, 208, 0.15);
}
.slposts-block-thumbnail
div.slposts-block-excerpt
a > img {
border: 0;
padding: 0;
}
.slposts-block-meta {
float: right;
margin-left: 5px;
font-family: sans-serif !important;
font-size: .8em;
border: 1px dotted #efefef;
padding: 3px;
color: #777;
}
.slposts-block-meta a {
text-decoration: none;
}
.slposts-block-metafooter {
display: block;
clear: both;
border-top: 1px dotted #efefef;
font-size: .8em;
text-align: right;
color: #777;
}
.slposts-block-excerpt {
text-align: justify;
}
/*\
* =========================
* | |
* | -- Blocks -- |
* | |
* =========================
\*/
Cheers.