When i installed this module, the appearance of the page was faulty because of a closed
that has no corresponding open
in the html script for this module.
I don't know where this overlapping div comes from. But removing one closed div from the html script balances out the divs and makes the page render properly.
og_teampage.module L168
$table .= '
';
change to:
$table .= '';
I can't see where the errant div is introduced. If someone can find that then they should fix it. This is a stopgap measure that'll hold for the time being ...
Cheers
Comments
Comment #1
TaraIT commentedErr that should read ...
change $table .= '</div>'; to $table .= '' ;
Am i the only one that has experienced this error ?
PS: Maybe if the html was W3C validated, errors like these would be easier to spot ?
Comment #2
MartinSfromB commentedI think, its fixed due the time.