XF 1.2 Mobile view (responsive)

tommydamic68

Well-known member
Is there a way to add the latest thread title In mobile view (responsive) in each forum? There needs to be more information on the forum home page then just time and date of last post to entice engagement. It's "boring" if you will.
 
It's not perfect styling wise, I'll leave that up to you or someone else, but to get the content to show, in node_list.css

Find:
Code:
        .Responsive .node .nodeLastPost .lastThreadTitle,
        .Responsive .node .nodeLastPost .lastThreadUser
        {
            display: none;
        }

Replace with:
Code:
        .Responsive .node .nodeLastPost .lastThreadTitle,
        .Responsive .node .nodeLastPost .lastThreadUser
        {
            display: block;
        }
 
It's not perfect styling wise, I'll leave that up to you or someone else, but to get the content to show, in node_list.css

Find:
Code:
        .Responsive .node .nodeLastPost .lastThreadTitle,
        .Responsive .node .nodeLastPost .lastThreadUser
        {
            display: none;
        }

Replace with:
Code:
        .Responsive .node .nodeLastPost .lastThreadTitle,
        .Responsive .node .nodeLastPost .lastThreadUser
        {
            display: block;
        }
Hey @Chris D - I just noticed this stop working, I checked that template and it must have been reverted back to the default CSS - upgrade to newer version I guess? is there a way to add this change and not have it revert back for future updates?
 
Top Bottom