wailoong Hi
It looks like you want to add this alert position into the default layout, depend on the layout you're using (no sidebar or with sidebar(s)), you can edit the associated file in this folder:
root/templates/ja_intranet/tpls/blocks/mainbody/
For example, as I can see from your screenshot, you don't use the sidebar so just edit this file: root/templates/ja_intranet/tpls/blocks/mainbody/no-sidebar.php
<?php
/*
* ------------------------------------------------------------------------
* JA Intranet Template
* ------------------------------------------------------------------------
* Copyright (C) 2004-2011 J.O.O.M Solutions Co., Ltd. All Rights Reserved.
* @license - Copyrighted Commercial Software
* Author: J.O.O.M Solutions Co., Ltd
* Websites: http://www.joomlart.com - http://www.joomlancers.com
* This file may not be redistributed in whole or significant part.
* ------------------------------------------------------------------------
*/
defined('_JEXEC') or die;
/**
* Mainbody 1 columns, content only
*/
?>
<div id="t3-mainbody" class="container t3-mainbody">
<div class="row">
<?php if ($this->countModules('alert')) : ?>
<jdoc:include type="modules" name="<?php $this->_p('alert') ?>" style="raw"/>
<?php endif ?>
<!-- MAIN CONTENT -->
<div id="t3-content" class="t3-content col-xs-12">
<?php if($this->hasMessage()) : ?>
<jdoc:include type="message" />
<?php endif ?>
<jdoc:include type="component" />
</div>
<!-- //MAIN CONTENT -->
</div>
</div>
and load the alert position as above:
<?php if ($this->countModules('alert')) : ?>
<jdoc:include type="modules" name="<?php $this->_p('alert') ?>" style="raw"/>
<?php endif ?>
Then make sure that you assign the module to correct menu item page.
Regards