How do we get rid of the extra space at the top of an admin message block? It's as if several scripts are being called to produce the admin message block and are adding their own
's above the title.
This isn't a theme problem, because it shows up on all themes (or at least all of the themes I've tried).
I checked modules/NS-Admin_Messages/messages.php and found:
Code
$ttitle .= $output->Linebreak();
$ttitle .= $output->Text($title);
$ttitle .= $output->Linebreak(2);
$ttitle .= $output->Text($title);
$ttitle .= $output->Linebreak(2);
towards the end of the file.
I commented out the 1st line seen above and that indeed moved the title up one line. However, there still appears to be 2-3 spaces remaining.
Anyone able to help with this?
Thanks...
