Thank you Aram I did not flush properly I guess
One other question :
The Page.ss is set like this :
///////////////////////////////////////////
<div class="typography">
<% if Menu(2) %>
<% include SideBar %>
<div id="Content">
<% end_if %>
<% if Level(2) %>
<% include BreadCrumbs %>
<% end_if %>
<h2>$Title</h2>
$Content
$Form
$PageComments
<% if Menu(2) %>
</div>
<% end_if %>
</div>
////////////////////////////////////
I find it strange that </div> tag closing the <div id="Content"> tag is under the <% if Menu(2) %> same thing with the <% end_if %> tag who is after the <div id="Content"> at the begining is it normal ? shlould it not be like this :
///////////////////////////////////////
<div class="typography">
<% if Menu(2) %>
<% include SideBar %>
<% end_if %>
<div id="Content">
<% if Level(2) %>
<% include BreadCrumbs %>
<% end_if %>
<h2>$Title</h2>
$Content
$Form
$PageComments
</div>
<% if Menu(2) %>
<% end_if %>
</div>
//////////////////////////////////////////////////////
Thank you