Hiding the date in IPS 4.6

fanson

Member
Registered
Joined
Feb 16, 2022
Messages
22
Points
3

Reputation:

Hello
How do I hide the date and time in posts and forums? IPBS 4.6.4?maybe via CSS?

....I have a forum portal where the date and time do not matter....


Thank you for your help
 

fanson

Member
Registered
Joined
Feb 16, 2022
Messages
22
Points
3

Reputation:

.. or how to delete dates in posts, topic and etc using css???Help :(
 

Soft4Win

Developer
Staff member
Moderator
Collaborate
Registered
Joined
Apr 27, 2019
Messages
371
Points
103

Reputation:

Hello, you can target a class or id using the css, and through which you can set it to display none, which will hide it.

Eg:-

CSS:
.date{
    display: none;
}

You just have to find which ID or Class is being applied to that, which you can find by selecting the date, right click and inspect element.
 
Top