By "cross" do you mean the IE red x box that denotes a broken image? (Firefox doesn't show those.)
You do not have a logo image, but the tpl_header.php code is still looking for one, and outputting the alt tag in its place.
You need to edit /includes/templates/your_template/common/tpl_header.php and comment out the whole logoWrapper section of code.
For the spacing, find in your stylesheet
Code:
.leftBoxContainer, .rightBoxContainer {
margin: 0em;
border: 1px solid #996699;
border-bottom: 5px solid #996699;
margin-top: 1.5em;
}
and delete the
margin-top: 1.5em;
Note that this will make all of the sideboxes crowd together without spacing. If you want them spaced from each other, change margin-top: 1.5em; to margin-bottom: 1.5em;