Resource icon

vBulletin 3.x style postbit (user info always above the post)

ShikiSuen

Well-known member
Licensed customer
ShikiSuen submitted a new resource:

vBulletin 3.x style postbit (user info always above the post) - vBulletin 3.x style postbit (user info always above the post)

Put the following CSS definitions AT THE END OF "Extra.less" Template:

CSS:
.block--messages .message {
    &.is-mod-selected {border-color: transparent; border-bottom-color: @xf-inlineModHighlightColor;}
}
.blockMessage {box-shadow: none;
    &.blockMessage--none {box-shadow: none;}
}

.block--messages {.block-container {box-shadow: none;}}

.message-inner {display: block;}
.message-cell {
    .m-clearFix();
    &.message-cell--user {
        width: auto;
        border-right: none...

Read more about this resource...
 
Awesome!

Would you know how I could get the text to align vertically with the top part of the user's avatar?
3019d8b67b3e4acc347d8de2fa1aff9c.png
 
Awesome!

Would you know how I could get the text to align vertically with the top part of the user's avatar?
3019d8b67b3e4acc347d8de2fa1aff9c.png
If you master how to use flexboxes, you can engineer how the default template can be manipulated by css.
 
I updated the code fixing the wring placement of the arrow pointing to the user’s avatar.
 
Back
Top Bottom