@crazycells I knew that was coming - here it is
@media (max-width: 767px) {
.posts-list .posts-list-item {
width: auto;
}
.posts-list .posts-list-item .post-body {
border-right: none !important;
width: 100%;
}
.posts-list .posts-list-item .post-info {
position: revert;
left: 0px;
width: 500px;
}
.posts-list .posts-list-item .post-info .post-author {
max-width: none !important;
display: flex;
}
.posts-list .posts-list-item .post-info .post-author span {
margin-left: 10px;
}
}
Some other adjustments to get even more estate on mobile (30px either side) - your tastes may vary
@media (max-width: 767px) {
.posts-list .posts-list-item {
width: auto;
}
.posts-list .posts-list-item .post-info {
position: revert;
left: 0px;
width: 100%;
margin-left: 15px;
}
.posts-list .posts-list-item .post-info .post-author {
max-width: none !important;
display: flex;
}
.posts-list .posts-list-item .post-body {
border-right: none !important;
width: 100%;
}
.posts-list .posts-list-item .post-info .post-author span {
margin-left: 10px;
}
}
The second CSS block gives you this
A final note that this of course does not include the colour scheme. This is from “Midnight” - a new theme I’ve developed in DEV which is almost ready for release, but has a few bugs I need to iron out first. I’ll publish a blog post on this new theme set soon.