Dear Oluwajoba Okediji,
Please go to your_site\templates\sj_worldnews\includes\frame_inc.php and find:
if($boolOverride == true){ // Window Overwrite Layouts
$classlayout .= $layoutItem.'-override';
$yt_render = new YtRenderXML($layoutItem.'.xml', $templateWidth, $arrGContent, $widthType, $mainBodyWidthType);
}else{ // Window Layout default
$yt_render = new YtRenderXML($windows_main_layout, $templateWidth, $arrGContent, $widthType, $mainBodyWidthType);
=>
if($boolOverride == true){ /* Window Overwrite Layouts*/
if($layoutItem == ""){
$yt_render = new YtRenderXML($windows_main_layout, $templateWidth, $arrGContent, $widthType, $mainBodyWidthType);
}else{
$classlayout .= $layoutItem.'-override';
$yt_render = new YtRenderXML($layoutItem.'.xml', $templateWidth, $arrGContent, $widthType, $mainBodyWidthType);
}
}else{ /* Window Layout default*/
$yt_render = new YtRenderXML($windows_main_layout, $templateWidth, $arrGContent, $widthType, $mainBodyWidthType);
}
Thanks!