Hi,
I suppose that you need image logo.
Default code look like this:
#gkLogo {
display: block;
float: left;
margin: 50px 0;
padding: 0;
text-indent: -999em;
text-shadow: none;
transition: background-color 0.3s linear 0s;
width: 157px;
}
So you have to change width value from 157px to your logo size.
Use this
- Code: Select all
#gkLogo {
width: 250px;
}
If your logo have 250px of width
If you want to reduce margin top & bottom change also this
- Code: Select all
#gkLogo {
width: 250px;
margin: 15px 0;
}
TIP:How to use CSS code in safe way:
http://www.gavick.com/documentation/joo ... -template/