The mini profile are in your profile contains two stats tables: user stats (post count etc) and visitor stats (viewing now etc). These come with class names
that let you hide certain columns in them.
The userstats table contains these class names
The visitorstats table contains these class names
You can hide any one of these columns with the following css
You can hide several at once by separating the classes with a comma, for example
The userstats table contains these class names
.total-posts
.last-post
.last-seen
.joined
.last-post
.last-seen
.joined
The visitorstats table contains these class names
.viewing-now
.today
.most-ever
.total-views
.today
.most-ever
.total-views
You can hide any one of these columns with the following css
.last-seen { display: none; }
You can hide several at once by separating the classes with a comma, for example
.last-seen, .joined, .viewing-now { display: none; }

