<em>@ash1111 84732 wrote:</em><blockquote>What is the width and height of the logo if I want to have it full-width (ie. the full length of the menu)
I want to know because I am paying a image designer to make me a logo and want to make sure it’s the right size.
– Ash</blockquote>
Hi,
You can find at the template.css under : HEADER (line 792) the original is :
width : 278 px, height : 42 px
#ja-headerwrap {
}
#ja-header {
height: 80px;
line-height: normal;
position: relative;
}
h1.logo, h1.logo-text {
margin: 0;
padding: 0;
font-size: 300%;
}
h1.logo a {
width: 278px;
display: block;
background: url(../images/logo.gif) no-repeat;
position: absolute;
height: 42px;
top: 20px
>
My teline work sjust fine with this max size, width : 971 px, height : 120 px
#ja-headerwrap {
}
#ja-header {
height: 120px;
line-height: normal;
position: relative;
}
h1.logo, h1.logo-text {
margin: 0;
padding: 0;
font-size: 300%;
}
h1.logo a {
width: 971px;
display: block;
background: url(../images/logo.gif) no-repeat;
position: absolute;
height: 120px;
top: 0px;
left: 0;
}
Cheers