So I have this css :
.footer .light {
height: 150px;
background-color: #66cccc;
text-align: left;
padding: 15px 42px;
vertical-align: middle;
}
And then my html looks like this :
<div class="light">
<img src="images/logo.png" alt="" />
</div>
This div is the lat part of a footer. Changing stuff in the css result in changes to the style of the div but the image is not in the middle. What am I missing ?