3
Yay!!
Sorted it and, shock of all shocks, by looking at (and understanding!) the codes in the three template files used by CBB to display posts/threads, i.e. newbb_viewtopic_thread.html, newbb_viewtopic_flat.html and newbb_viewtopic_compact.html.
These three files contain the following code:
<div class="clear">div>
Then it dawned...... did my theme's .css file contain a definition for a class called "clear"? The answer was no
Anyway, to cut a long story short, I found the answer using my old friend Mr Google. Searching on the above code gave me this webpage:
http://www.andybudd.com/archives/2003/12/css_crib_sheet_2_clearing_floats/and the answer, i.e. add the following code to my theme's .css file:
.clear {
clear: both;
height: 0;
}
So, if you're using CBB 3.0x and want it to display as phppp/DJ intended, make sure that your theme's .css file contains the above code. Should work in all web browsers.
And to save you looking, I can tell you that both the XOOPS "default" and the "Bluehue" themes don't. Or rather, didn't
Hope this helps a few peeps.