Skip to main content
All CollectionsStyling Your Social WallCSS Tutorials
How to hide the timestamp and username on your wall?
How to hide the timestamp and username on your wall?

Can I hide the timestamps and usernames on my social wall?

Neira Dzabija avatar
Written by Neira Dzabija
Updated over 3 years ago

If you want to hide the timestamps on your posts ๐Ÿ‘‡
โ€‹

you should add this code to your custom CSS box under Settings > Design ๐Ÿ‘‡

.checkin-timestamp { /*hide the timestamp*/
display: none;
}

For hiding the usernames on your social wall ๐Ÿ‘‡ ,
โ€‹

add this code to your CSS box ๐Ÿ‘‡

.checkin-user-name { /*hide the username*/
display: none;
}

Once you add those CSS code snippets, the timestamp and username will disappear on each post ๐Ÿ‘‡
โ€‹


โ€‹

In case you have further questions, don't hesitate to contact the support team via chat or support@walls.io!
โ€‹


โ€‹

Did this answer your question?