I have a situation where I am attempting to place two elements, a "read more" button and another floating button, inside a container. However, I want both of these elements to align to the left within the container. Strangely, when I run the code, the elements end up not being contained within the specified div and are instead positioned about 200px below it. Any idea why this is happening?
<div class="readMore_Container">
<?php the_content('Read More »'); ?>
<div class="postCounter">#200</div>
</div>
Here's the CSS:
.readMore_Container {
width: 100%;
line-height: 40px;
height: 40px;
position: ;
border: 1px solid #000;
}