MyBB Community Forums

Full Version: alternating user profile sizes in thread
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm using 1.6.10
Default theme
What do I edit to make all the profiles appear the same size and in line?
I can see the text sizes on each alternating profile are different causing it to enlarge.I'd like to keep a uniform allingment with the box along the top bar that says 'author'.

[attachment=29612]
In postbit_classic and showthread_classic_header change <td>s' width="15%" to bigger percentage or proper fixed px size. Both values should be equal. Remove white-space: nowrap; from style in the same td in postbit_classic.

That won't fix it 100% in some forums though (for example in case of long usernames without spaces or huge usernames). More CSS like word-wrap: break-word; would be needed. Same when the images will make it bigger - then need to scale them manually, with max-width: 95%; or whatever.
that works for me
thank you kindly