Hi geekyartist.
Open the template.css file and change some line code:
1. Increase height of the header.
#ja-header {
height: 91px; <-- increase it.
line-height: normal;
position: relative;
}
2. Change width of the logo.
h1.logo a {
width: 219px;
display: block;
background: url(../images/logo.png) no-repeat;
position: absolute;
height: 52px;
top: 20px;
left: 0;
}
3. Change position of the logo.
h1.logo a {
width: 219px;
display: block;
background: url(../images/logo.png) no-repeat;
position: absolute;
height: 52px;
top: 20px; <-- Position top
left: 0; <-- Position left
}