Ohhh i can see your problem now...
Ok this is easily fixed.. you will need to change the height of your logo to 130px height, this will place everything back into alignment... this is caused as the height of the search input is set to a fixed position.. you can change this by editing the following CSS file:
- vbulletin-chrome.CSS
Code:
.navbar_search {
position:relative;
width:222px;
bottom: 1px;
float: {vb:stylevar left};
{vb:stylevar right}: -{vb:math {vb:stylevar padding}*2};
display:block;
}
Where it says width, this actually controls the height of the search input area and not the width.. Search in templates for: "navbar_search" and you fill find several areas that say width, they for some reason control the height..
So yeah either use a logo at 130px or play with the CSS to reduce the height / positioning of the navbar_search classes.
Good luck, and sorry about that. I will st this to "Float" next release.
Regards Darren