Dear Wizard! You can follow the instructions below:
1, Customize layouts:
YOUR_TEMPLATE/layouts/left-main.xml(or ...?) delete code:
<header2 order="2" id="yt-header">
<positions>
<position width="700px" height="" type="feature">@logo</position>
<position width="" height="" type="modules">header1</position>
</positions>
</header2>
2, Customize css:
YOUR_TEMPLATE/css/template.css change:
body.homepage #yt-wrapper {
padding: 475px 0 0;
}
to:
body #yt-wrapper {
padding: 475px 0 0;
}
YOUR_TEMPLATE/css/template.css change:
.homepage #yt-wrapper-inner1 {
padding: 475px 0 0;
position: absolute;
top: 0;
}
to:
#yt-wrapper-inner1 {
padding: 475px 0 0;
position: absolute;
top: 0;
}
YOUR_TEMPLATE/css/color/dark_blue.css change:
body.dark_blue.homepage #yt-wrapper {
background: url("../../images/dark_blue/bg_slideshow.png") no-repeat left top;
}
to:
body.dark_blue #yt-wrapper {
background: url("../../images/dark_blue/bg_slideshow.png") no-repeat left top;
}
YOUR_TEMPLATE/includes/frame_inc.php change:
$doc->addStyleDeclaration('.homepage #yt-wrapper-inner1{ ...
to:
$doc->addStyleDeclaration('#yt-wrapper-inner1{ ...