If you want a cleaner Walls.io social wall, you can hide the timestamp, the username, or both with custom CSS in Setup > Design. Use the first snippet if you only want to remove timestamps, the second if you only want to remove usernames, or both if you want to simplify the post layout across your wall.
How to hide timestamps with custom CSS
Go to Setup > Design, paste the timestamp snippet into the custom CSS box, and save your changes.
.checkin-timestamp { /*hide the timestamp*/
display: none;
}
How to hide usernames with custom CSS
If you also want to remove usernames from each post, paste the second snippet into the same custom CSS box and save again.
.checkin-user-name { /*hide the username*/
display: none;
}
✅ Final check: After you save the CSS changes, timestamps and usernames disappear from the posts where you applied these snippets. Open your wall preview or one live post to confirm the cleaner layout still looks right.
In case you have further questions, don't hesitate to contact the support team via chat or support@walls.io!






