The main thing causing that space is this line (line 619):
Code:
.entry-content input {
margin: 0 0 24px 0;
}
If you change 24px to 0, the spaces will close up. If you want, you could reduce the space at the top of the form by modifying the html in red below:
Code:
<form style="margin-top: 10px; margin-bottom: 0px; text-align: center;" target="_blank" method="get" action="http://www.wunderground.com/cgi-bin/findweather/getForecast">
<input type="hidden" value="htmlSticker" name="bannertypeclick">
<div>
<input type="text" style="width: 85px;" onfocus="this.value=''" value="Find Weather" name="query"></div>
<div style="padding-top: 5px;">
<input type="submit" style="width: 50px; background-color: rgb(0, 0, 136); color: rgb(255, 255, 255); font-size: 12px; font-weight: bold; border-width: 1px; border-style: solid; border-color: rgb(204, 204, 204) rgb(0, 0, 0) rgb(0, 0, 0) rgb(204, 204, 204);" value="GO" name="GO"></div>
</form>
Hope that helps!
PS: My Firebug view is attached
Bookmarks