I’ve solved the problem… it was a mismatch with menu assignment, but now i’m trying to modify home.php style layout to force block content to display after ‘header’ block.
I’m using ‘mainbody’ block to show featured articled in home page. But if u put this block after ‘header’ it always displays on top of the page!!!
Any suggestion?
defined(‘_JEXEC’) or die;
?>
<!DOCTYPE html>
<html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>"
class='<jdoc:include type="pageclass" />’>
loadBlock(‘head’) ?>
addCss(‘layouts/uberhome’) ?>
<body class="home">
<div class="t3-wrapper">
<?php $this->loadBlock(‘header’) ?>
<?php $this->loadBlock(‘mainbody’) ?>
<?php $this->loadBlock(‘home’) ?>
<?php $this->loadBlock(‘footer’) ?>