Thread Reply/View Column Width Error - Printable Version +- MyBB Themes - ThemeFreak (http://www.themefreak.net) +-- Forum: MyBB 1.6.x (http://www.themefreak.net/forumdisplay.php?fid=8) +--- Forum: Support for 1.6.x (http://www.themefreak.net/forumdisplay.php?fid=10) +---- Forum: Minimal (http://www.themefreak.net/forumdisplay.php?fid=17) +---- Thread: Thread Reply/View Column Width Error (/showthread.php?tid=56) |
Thread Reply/View Column Width Error - phio_chan - 4th Mar Hello there, Jon. I experienced this strange layout of Minimal theme. Inside a section my forum has, the number of replies and thread views look normal, like shown in screenshot: However, on other section, it looks like this: as if the column width for number of replies and thread views are not big enough so it's shoved to make multiple lines. How may I fix this? Thank you! RE: Thread Reply/View Column Width Error - Jon - 4th Mar Go to 'Templates & Styles > Templates > minimal templates > Forum Display Templates > forumdisplay_thread Find Code: <td align="center" class="{$bgcolor}{$thread_type_class}"><a href="javascript:MyBB.whoPosted({$thread['tid']});">{$thread['replies']}</a>{$unapproved_posts} replies<br />{$thread['views']} views</td> Replace with Code: <td align="center" width="150px" class="{$bgcolor}{$thread_type_class}"><a href="javascript:MyBB.whoPosted({$thread['tid']});">{$thread['replies']}</a>{$unapproved_posts} replies<br />{$thread['views']} views</td> You can keep adjusting the width until you are happy with the outcome. RE: Thread Reply/View Column Width Error - phio_chan - 4th Mar Strange enough no matter what I change the width into nothing would be different. RE: Thread Reply/View Column Width Error - Jon - 4th Mar try changing the width of this part in the same template Code: <td class="{$bgcolor}{$thread_type_class}" width="62%"> That is the width for the title of the thread, so if that's reduced and the replies / views one is increased it should change for you. RE: Thread Reply/View Column Width Error - phio_chan - 5th Mar Yes, perfect, now this one works. Thank you very much! RE: Thread Reply/View Column Width Error - Jon - 5th Mar No problem, any other issues let me know and i will try and help. |