digitalpoint
Well-known member
- Affected version
- 2.2.7
Let's say we don't have user titles and the user doesn't share things like location or the last time they were on the site. Their member profile looks like this (avatar starts to disappears behind tabs):
Not a huge deal, but ran into an issue where the buttons don't show either (for example someone looking at their own profile and they don't have the permission to search):
Now their profile looks like this:
I ended up giving the .memberHeader a min-height when above the width that the large avatar shows (might be something worthwhile because there's a lot of info that isn't always there, even if it's there by default).
Ends up formatting a minimal member profile header like so:
Not a huge deal, but ran into an issue where the buttons don't show either (for example someone looking at their own profile and they don't have the permission to search):
Now their profile looks like this:
I ended up giving the .memberHeader a min-height when above the width that the large avatar shows (might be something worthwhile because there's a lot of info that isn't always there, even if it's there by default).
Less:
@media (min-width: (@xf-responsiveMedium + 1))
{
.memberHeader
{
min-height: (@avatar-l + 20);
}
}
Ends up formatting a minimal member profile header like so: