XF 1.3 Move .node .nodeLastPost .lastThreadTitle using CSS

Neil E.

Active member
move with css.webp
I have a responsive layout that removes .node .nodeLastPost .lastThreadMeta (display: none).

At the same time I'd like to move .node .nodeLastPost .lastThreadTitle
below .node .nodeText .nodeTitle as shown above.

.node .nodeStats has already been removed at a wider responsive trigger point using display: none.

Can this be done with CSS only?
 
I was able to do it with absolute positioning:

.node .nodeLastPost
{
position: absolute !important;
top: 0px !mportant;
left: 0px !important;
padding-top: 26px !important;
padding-left: 56px !important;
}
 
Top Bottom