Quote:
Originally Posted by bonjurkes
skin is really cool and really good work but i have a problem
how can i fix it ?
|
The solution for this is very simple for IE.
In the postbit_legacy is writen for this colume "width=175px".
And a small calculation, the buttons are bigger then that together. And IE is a little bit dumber then Mozilla. He can't make a new line. That is the problem.
Change this line in postbit_legacy
Before:
</tr>
<tr valign="top">
<td class="alt2" align="left"
width="175px" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px; border-bottom: 0px">
After:
</tr>
<tr valign="top">
<td class="alt2" align="left"
width="20%" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px; border-bottom: 0px">
Gr, Tom