Replace :
<div id="oktoheader">
<div id="headright">
<!-- module Search loaded without template position -->
<?php elxLoadModule('mod_search', -2); ?>
<!-- module Language loaded without template position -->
<?php elxLoadModule('mod_language', -2); ?>
</div>
</div>
With :
<div id="oktoheader">
</div>
In: index.php
AND:
Replace :
#oktoheader {
text-align:left;
background: #78A1BB url(../images/elxislogo.jpg) no-repeat top left;
height: 75px;
border-bottom: 1px solid #1D4D6C;
}
With :
#oktoheader {
text-align:left;
background: #78A1BB url(../images/elxislogo.jpg) no-repeat top center;
height: 75px;
border-bottom: 1px solid #1D4D6C;
}
The new file elxislogo.jpg should replace with your header image ... and the color of your background should match on your background of image
background:
#78A1BB url(../images/
elxislogo.jpg) no-repeat top center;
Okto template has auto width dimension ... So you can set it to static by changing the value of width in this line :
#container {
padding: 0;
margin: 0;
width: 100%;
background: #C2C29C url(../images/bg.png) repeat 0 0;
text-align: center;
}
Change width to a static value (like 900px)
When you set the static width , On the content you can set your dimensions of your picture to a valid value to fit on there ... It should not be larger than that area ... you can get a screenshot from the final work and calculate dimensions on that area in a photo editor (like photoshop)