MyBB Community Forums

Full Version: Help with td width
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey, I use Advanced Sidebox Plugin, recently I wanted to create some kind of 'events' sidebox for my forum.

I have thead with colspan 2, then tr codes for rows, inside of each I have 2 td codes with colspan 1.
I want first td code to be only 10% width, while other one is 90%.

But no matter what I do, it's always 50-50.
What should I do inorder to have them 10-90?

Example code:
<tr>
    <td class="trow2" colspan="1" width="10%"><span style="font-size:12px;"><a href="..."><img src="..."></a></span></td>
    <td class="trow2" colspan="1" width="90%"><span style="font-size:12px;"><a href="...">...</a></span></td>
</tr>
As you can understand I want first td to be something like icon, which directs to events' forum, while 2nd td should be events name, directs to events specific thread.
Where are you changing this html? If its inside the plugin itself you may need to uninstall/reinstall it for it to take effect.
It's custom sidebox in plugin, I think everything takes effect instantly, i suspect theres something wrong with coding.

Anyone?