Suggestion: Inline avatar badges
[deleted]
Your forum needs to look epic, can you share the link?
- Edited
/* end of all css codes
******************************************************/
.PostUser .UserOnline {
position: absolute;
left: -60.5px;
top: 56px;
border-radius: 50%;
border: 2px solid #fff;
line-height: 0;
}
.PostUser-badges.badges {
margin-left: -64px;
margin-top: 80px;
width: 22px;
}
.PostUser-badges.badges li {
display: block;
}
.PostUser-badges.badges li span {
border-radius: 0;
/* display: block; */
margin: auto;
}
.PostUser-badges.badges li:first-of-type span {
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.PostUser-badges.badges li:last-of-type span {
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
psylancholy Could you provide CSS with which I can make badges appear like #2/3 on my forum?
I would like to know this one as well
[deleted]
Mark73 A link to a random post on my forum provides an alternative flavour in case you'd like to consider this also.
I've had this layout for almost a year but never shared it
[deleted]
- Edited
Arnold Yep
.Post-Rank {
color: gray;
font-size: 10px;
margin-left: 10px;
display: inline;
}
.PostUser-badges {
position: relative;
width: 0px;
margin-left: 10px;
display: inline;
}
time {
padding-left: 15px;
display: inline;
}
Note, that you don't need the .Post-Rank
if you are not using ranks extension
And to make the mobile view look nice
@media (max-width: 768px) {
.PostUser-badges {
position: relative;
top: 0px;
left: 0px;
width: 32px;
}
}
- Edited
.PostUser-badges.badges {
float: none;
width: auto;
margin-left: 4px;
top: -2px;
}
.PostUser-badges.badges li span {
margin-left: 4px;
}
.PostUser .UserOnline {
position: absolute;
left: -87px;
top: -3px;
z-index: -1;
}
.PostUser .UserOnline .icon {
font-size: 64px;
border: 2px solid #fff;
border-radius: 50%;
line-height: 64px;
box-shadow: 0 0px 3px 3px;
}
that is possible with Pollux thank you
[deleted]
MirHamid Its not public yet, maybe a other person with the level ranks extension can post here?
- Edited