Please or Register to create posts and topics.

Hide post date in mobile views on main forum page

Hi,

 

I’ve found this post which addresses the same topic:

 

https://asgaros.com/support/topic/hide-post-date-on-forum-pages/

 

I’ve managed to hide the post date as per that post, however it only hides it for desktop widths. I used:

 

.asgaros-forum-overview .forum-poster-summary small :nth-child(-n + 2)

display: none !important;

}

 

When the screen width reduces to a mobile width, the post date (as in how many weeks ago the post was made) is still present. I would like to display: none for this too.

 

I’ve tried using a responsive checking website to find the correct CSS target to use, but unfortunately when using the browsers ‘inspect feature’ it doesn’t display the correct CSS target as it’s displayed via the responsive checking website.

 

Does anyone know the correct CSS to use to hide it for mobile widths?

 

Kind regards,

 

Tim

Ok, so I found the nifty option to look at android devices in chrome developer tools!

I’ve mucked about and managed to make this one which hides the post date, but the dot ‘.’ is left:

 

div.forum-name > small.forum-lastpost-small > a:nth-child(2) {
display: none;
}

 

Does anyone know how I can hide the dot ‘.’ too?

 

Cheers,

 

Tim