I recently added message module in my application
in main .php it looks like the following
'modules'=>array(
// uncomment the following to enable the Gii tool
...
'message' => array(
'userModel' => 'User',
'getNameMethod' => 'getFullName',
'getSuggestMethod' => 'getSuggest',
),
inside message module i have the
public $viewPath = '/message/fancy';
and , the module has its own navigation, bootstrap.css , styles etc.,
So, when I click on the message link , the entire layout actually changes, what do I need to do to ensure that i have the same layout as my main application?
Check how I click on message and entire layout changes!!
5972
5973
Basically , the module is behaving completely different that the main application… e.g i can’t see the columns on the left when i click on the messages