Hello Everyone,
I wonder how to change the default custom post layout to show the featured image on the left rather than on the top.
This is the default HTML
[wpbb-if post:featured_image]
<div class="fl-post-image">
[wpbb post:featured_image size="large" display="tag" linked="yes"]
</div>
[/wpbb-if]
<div class="fl-post-text">
<h2 class="fl-post-title">[wpbb post:link text="title"]</h2>
<div class="fl-post-meta">
By [wpbb post:author_name link="yes"]
<span class="fl-post-meta-sep"> | </span>
[wpbb post:date format="F j, Y"]
</div>
<div class="fl-post-excerpt">
[wpbb post:excerpt length="55" more="..."]
</div>
<div class="fl-post-more-link">
[wpbb post:link text="custom" custom_text="Read More..."]
</div>
</div>
And this is the default CSS
.fl-post-grid-post {
font-size: 14px;
}
.fl-post-text {
padding: 20px;
}
.fl-post-title {
font-size: 20px;
line-height: 26px;
margin: 0;
padding: 0 0 5px;
}
.fl-post-meta {
padding: 0 0 15px;
}
Thank you!