SO, I've got a horizontally and vertically centered div for a landing page. I'm attempting to add an image to the div, but as soon as I insert it, the content of the centered div is either pushed to the bottom of the screen or to one side (see the page here). I've tried to solve the problem with this CSS:
#landlogo {
display: block;
margin-left: auto;
margin-right: auto;
float: left;
clear: both;
}
But to no avail. For some reason, the image refuses to align to the center just above the text like the other components on the page. I suppose there could be an issue with the Jquery that somehow prevents it from properly centering with images, but I thought perhaps I'd run it by the much sharper minds on SO before I try any more in-depth solutions.