EidolonAH
11-20-2009, 11:12 AM
Posted this on .com too but figured some folk here might be able to help with the bit Im stuck on.
I found a partial fix for the avatar bug in horizontal postbit, but there is one bit I have yet to figure out, the username & rank should be floating to the right of the avatar and it's showing underneath:
106431
This is the partial fix
OPEN postbit.css
FIND:
.postbit .postuseravatarlink {
display:block;
text-align: center;
position: absolute;
top: 0;
{vb:stylevar left}: {vb:math {vb:stylevar padding}+5};
width: 60px;
height: 60px;
background: {vb:stylevar postbit_background};
overflow: hidden;
}
.postbit .postuseravatarlink img {
height: auto;
max-height:60px;
height:auto !important;
max-width:60px;
width:auto !important;
margin: auto;
}
REPLACE WITH:
.postbit .postuseravatarlink {
display:inline;
text-align: center;
position: relative;
top: 0;
{vb:stylevar left}: {vb:math {vb:stylevar padding}+5};
width: auto;
height: auto;
background: {vb:stylevar postbit_background};
overflow: hidden;
}
.postbit .postuseravatarlink img {
height: auto;
max-height:auto;
height:auto !important;
max-width:auto;
width:auto !important;
margin: auto;
}
Input on fixing the username position would be great if I can't fix it myself soon.
I found a partial fix for the avatar bug in horizontal postbit, but there is one bit I have yet to figure out, the username & rank should be floating to the right of the avatar and it's showing underneath:
106431
This is the partial fix
OPEN postbit.css
FIND:
.postbit .postuseravatarlink {
display:block;
text-align: center;
position: absolute;
top: 0;
{vb:stylevar left}: {vb:math {vb:stylevar padding}+5};
width: 60px;
height: 60px;
background: {vb:stylevar postbit_background};
overflow: hidden;
}
.postbit .postuseravatarlink img {
height: auto;
max-height:60px;
height:auto !important;
max-width:60px;
width:auto !important;
margin: auto;
}
REPLACE WITH:
.postbit .postuseravatarlink {
display:inline;
text-align: center;
position: relative;
top: 0;
{vb:stylevar left}: {vb:math {vb:stylevar padding}+5};
width: auto;
height: auto;
background: {vb:stylevar postbit_background};
overflow: hidden;
}
.postbit .postuseravatarlink img {
height: auto;
max-height:auto;
height:auto !important;
max-width:auto;
width:auto !important;
margin: auto;
}
Input on fixing the username position would be great if I can't fix it myself soon.