XF 1.2 two simple questions on posting user information

localhost8080

Well-known member
Hello,

I've two questions where to find the style settings for

1) custom user fields below user avatar in a posting

2) date format for field "user joined at"

Thank you!
 
Each field when displayed in the post information is wrapped in a dl tag and has a custom class that you can use EXTRA.css to style it with:
EG:
HTML:
<dl class="pairsJustified userField_drives">
    <dt>Drives:</dt>
    <dd>VX 220</dd>
</dl>

EXTRA.css
HTML:
.messageUserBlock .extraUserInfo .userField_drives {
color: blue;
}
 
Top Bottom