I still need a logo for my site and one of the WoltLab staff members has a avatar similar-ish to the logo I want on my site. Anyone know who designs their avatars?
Many thanks
Jupiter
I still need a logo for my site and one of the WoltLab staff members has a avatar similar-ish to the logo I want on my site. Anyone know who designs their avatars?
Many thanks
Jupiter
They do it by their own. There's a pattern, but just for the brand colors.
I notice they have the border as well around the staff box in posts as well that members don't have.
That's some simple CSS and has been added in the WSC version of the website
Yes, I'm guessing they used a conditional to only add the border styling to staff group posts Admin/Mod
That's correct.
@media (min-width: 769px) {
.userOnlineGroupMarking12 .messageSidebar,.userOnlineGroupMarking13 .messageSidebar {
border:3px solid #3a6d9c;
border-bottom-width: 30px;
}
.userOnlineGroupMarking12 .messageSidebar::after,.userOnlineGroupMarking13 .messageSidebar::after {
background-image: url('https://www.woltlab.com/images/woltlabLogo-userRankBanner@2x.png');
background-size: cover;
bottom: -23px;
content: "";
height: 20px;
left: 50%;
position: absolute;
transform: translateX(-50%);
width: 102px
}
.userOnlineGroupMarking12 .messageSidebar .userCredits,.userOnlineGroupMarking13 .messageSidebar .userCredits {
display: none
}
.userOnlineGroupMarking12 .messageSidebar .woltlabTeamBadge,.userOnlineGroupMarking13 .messageSidebar .woltlabTeamBadge {
background-image: none
}
.userOnlineGroupMarking12 .messageSidebar .woltlabTeamBadge::before,.userOnlineGroupMarking13 .messageSidebar .woltlabTeamBadge::before {
display: none
}
}
Display More
Don’t have an account yet? Register yourself now and be a part of our community!