Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: bb topic view problem

Hello,

It is a pure CSS problem and very easy to fix – just add widths to the columns. And the problem is mostly in the column which holds the titles. So, try something like this:

td.text { width: 63%; padding-left: 2%; }
td.info { width: 20%; }
td.view { width: 15%; }

All the widths add up to 100%. You can also skip the last rule (for .view) as it will automatically fill the remaining space (in most browsers I believe).

and drop the first column altogether ( .watcher ) if you are using it only for spacing.

Skip to toolbar