XF 1.5 Hide latest information in responsive view.

viper357

Well-known member
Hi all.

I have a small issue with my custom style that I am unable to solve, the "latest" information is not aligned properly with the style. Is there anyway I can hide this "latest" line when the forum goes responsive? Or perhaps is there a way to move it up or down? Thanks. :)

2016-02-14 17.37.55.webp
 
Thanks for the tutorial. :) I managed to hide it using this code in my Extra.css

Code:
<xen:if is="@enableResponsive">
@media (max-width:610px) {
.lastThreadMeta
{
visibility: hidden;
}
}
</xen:if>
 
Last edited:
Top Bottom