I've been scouring the web for a solution to my issue, but I can't seem to find one that fits my particular scenario.
Currently, I'm facing an issue where the text and image are stacking on top of each other instead of appearing side by side within the headerBlock div.
#wrap {
width: 800px;
margin: 0 auto;
overflow: hidden;
float: left;
}
#headerBlock {
height: 200px;
background: #776b68;
}
div.headerText {
vertical-align: middle;
text-align: justify;
}
div.headerImg img {
vertical-align: middle;
}
<div id="wrap">
<div id="headerBlock">
<div class="headerText">Some text here</div>
<div class="headerImg"><img src="/somepicturehere">
</div>
</div>
<!--Ignore these, it's for future use-->
<div id="leftBlock"></div>
<div id="rightBlock"></div>
<div id="footerBlock"></div>
</div>