Tomsn wrote:
... how did you finde out where to remove the div and where to replace? ...
Probably not what you want to hear, but it was a bit of educated guesswork added with the information Roland had given in his earlier post.
Using Firefox with Firebug plugin installed I could see that the heading section above each table on the tab was part of a <div class="sectiontableheader" ... > division.
I could then see that the <table> ... </table> that followed containing the list of posts, subscriptions etc. was still part of the same division with the </div> tag at the end of the table. This was why the table was showing weird formatting with alternate rows of white text (part of the "sectiontableheader" style) on yellow background (part of the alternate rows definition of the table).
I could then see that what Roland had described was absolutely true, all that was required was to move the </div> tag from the end of the following table, to before the table. This way, the header will be formatted as "sectiontableheader" style and the table will be formatted as it should be.
To fix your problem with uddeIM I would suggest:-
- Find the PHP file that creates the content of the tab, presumably in a similar place to the Forum tab PHP we've just changed.
- Download Firebug if you don't have it, and use it confirm that the same problem exists. e.g. the section heading and the data table that follows are all part of the same <div> ... </div> section. Firebug's "inspect" tool will show all the divisions on the final rendered page as you move you mouse around allowing you to build a map of how the divisions are structured and nested within each other.
- Backup the PHP file
- Edit the PHP file to move the position of the </div> tag. I'm not sure if you have any PHP experience, but if you've any scripting / programming experience you'll work it out, I'd never seen a PHP file until last night.
- Keep using Firebug to inspect the output of your amended script on the working website. Check that each <div></div> pair on the tab is still intact and none of them get broken or left open by mistake. Any errors here might cause random other bits of the webpage to start to render incorrectly.
- Post fixed file here - I've not started looking into IM on my site yet, but might choose uddeIM and require your fix!

Good luck,
Tony Woodhouse