We can see on the others Layouts that the "newsflash" module is displayed above the "content".
Now, for the layout by default, this position does not appear.
You have to edit the file :
Folder : templates > ja_purity_ii > layouts > default.php
$positions = array (
'left1' =>'left',
'left2' =>'',
'left-mass-top' =>'',
'left-mass-bottom' =>'',
'right1' =>'right',
'right2' =>'',
'right-mass-top' =>'',
'right-mass-bottom' =>'',
'content-mass-top' =>'',
'content-mass-bottom' =>'',
'content-top' =>'',
'content-bottom' =>'',
'inset1' =>'',
'inset2' =>''
);
We can see that the content-top is not enabled, we will do this :
$positions = array (
'left1' =>'left',
'left2' =>'',
'left-mass-top' =>'',
'left-mass-bottom' =>'',
'right1' =>'right',
'right2' =>'',
'right-mass-top' =>'',
'right-mass-bottom' =>'',
'content-mass-top' =>'',
'content-mass-bottom' =>'',
'content-top' =>'top',
'content-bottom' =>'',
'inset1' =>'',
'inset2' =>''
);
You have only to publish the module " newsflash " or other in top position.















