Hi
As Andrew says you can use a plugin to amend your css if you are not familiar. If you have the plugin then look for this code at around line 631 within your style.css
#site-title img {
margin: 38px 0 0;
vertical-align: middle;
}
You can change this to
#site-title img {
margin: 38px 0 0 0;
vertical-align: middle;
}
Then look at changing the last two zeros to a value that you are happy with
an example is here using this code
#site-title img {
margin: 38px 0 0 -31px;
vertical-align: middle;
}