Quote:
Originally Posted by wilford brimley
anyway to do this? either by making the first post avatar larger (150%) and then setting a restriction on avatar size OR prefered to leave first avatar the full size and then scale rest of thread avatars to 50%
|
Just put this code on postbit or postbit_legacy template
HTML Code:
<style>
.postbitlegacy .userinfo .postuseravatar {
<vb:if condition="$post['isfirstshown']">
height:150%;
width:150%;
<vb:else />
height:50%;
width:50%;
</vb:if>
}
<style>
I didn't test it but it should works