Ah yes... the search sidetop image lift. It's a known issue with the search heading classed to "LABEL". Revert any changes that were utilized to drop this specific space issue.
In your current stylesheet.css, find;
Code:
LABEL, h4.optionName {
line-height: 1.5em;
padding: 0.2em;
}
Maybe replace above with;
Code:
h4.optionName {
line-height: 1.5em;
padding: 0.2em;
}
LABEL {
line-height: 1.5em;
padding: 0em;
}
That should knock the air out of the top and sit things right...and hopefully not affect anything else negatively.