.entry-title-wrapper.hi @bstock98,
with the blog content hightlighted, you should see on the right sidebar an option to edit the listing layout .
within that you should look for
something like this
{% for content in content %}
directly under that, you will see the post container. yours will look like
<div class="post-item">
<div class="post-header">
<!-- this contains your share button -->
</div>
<div class="entry-title-wrapper">
<!-- this contains your title and date -->
</div>
<div class="post-body clearfix">
<!-- this contains your summary -->
</div>
</div>
what you need to do is take the second and third divs inside the post-item container and put them inside a parent div so it would look like this:
<div class="post-item">
<div class="post-header">
<!-- this contains your share button -->
</div>
<div class="listing-inner-wrapper">
<div class="entry-title-wrapper">
<!-- this contains your title and date -->
</div>
<div class="post-body clearfix">
<!-- this contains your summary -->
</div>
</div>
</div>
Now, in your stylesheet, search for .entry-title-wrapper.
remove the float: left
change the width to 33%
then, search for .post-body.clearfix.
remove the float: right
remove the width
(i saw both of .entry-title-wrapper and .pos-body-clearfix twice in the css so make sure to change both
Add the following:
.listing-inner-wrapper{ display: -webkit-box; display: -ms-flexbox; display: flex; } @media (max-width: 500px){ .listing-inner-wrapper{ -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column } .entry-title-wrapper{ width: 100%; }}
Hopefully, that gets you somewhere. It might be good to reduce the size of the h2s for mobile devices as well.
And remember, you have a revision history so you can go back to an older version if something doesnt work out right 