This change is necessary to left align block content in IE.
If you are using forum skins for MKPortal...
FIND:
/mkportal/templates/Forum_Skin/tpl_main.php said:
function view_block($title, $content) {
global $mklib;
$box_content = $this->box($title, $content);
return <<
center">
{$box_content}
EOF;
}
global $mklib;
$box_content = $this->box($title, $content);
return <<
{$box_content}
EOF;
}
REPLACE WITH:
/mkportal/templates/Forum_Skin/tpl_main.php said:
function view_block($title, $content) {
global $mklib;
$box_content = $this->box($title, $content);
return <<
left">
{$box_content}
EOF;
}
global $mklib;
$box_content = $this->box($title, $content);
return <<
{$box_content}
EOF;
}













