Hi
open the template.css file under templatesjasanidinecss
the code that needs to be modified is:
/* HEADER
--------------------------------------------------------- */
#ja-header {
line-height: normal;
position: relative;
padding: 0;
margin: 0 10px;
z-index: 999;
height: 90px;
background: url(../images/header-bg.gif) repeat-x bottom #CCCCCC;
border-top: 1px solid #CCCCCC;
}
h1.logo, div.logo-text {
margin: 0 20px;
padding: 0;
}
h1.logo {
width: 264px;
height: 60px;
float: left;
margin-top: 15px;
}
h1.logo a {
width: 264px;
height: 60px;
display: block;
background: url(../images/logo.png) no-repeat center;
}
this would be your final code
/* HEADER
--------------------------------------------------------- */
#ja-header {
line-height: normal;
position: relative;
padding: 0;
margin: 0 10px;
z-index: 999;
height: 150px;
background-color: #CCCCCC;
border-top: 0px solid #CCCCCC;
}
h1.logo, div.logo-text {
margin: 0 ;
padding: 0;
}
h1.logo {
width: 100%;
height: 150px;
float: left;
margin-top:0px;
}
h1.logo a {
width: 100%;
height: 150px;
display: block;
background: url(../images/logo.png) no-repeat center;
}
The problem is because you are trying to insert a logo with size of 700px X 150px, while in the template the defined size of logo is 264X60. If you need the logo to cover the entire header part (without any white background) then the size should be 930px.