XF 1.4 Show last post on forum index in responsive design

DaveL

Well-known member
Does anyone know how I would go about showing the thread the last post was made in under each category on the forum index when a person is using responsive design on a mobile?

Had quite a few members asking for this since switching to responsive.

Thanks in advance
Dave
 
You need to delete/comment out the associated CSS in node_list.css:

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

Other changes may be required to get it to display correctly.
 
Top Bottom