Upon using chrome for inspection, I stumbled upon the following code snippet:
<div class="entry-content">
<p>We .... </p>
</div>
<footer class="entry-footer">
</footer>
Occasionally, this footer element is found empty while other times it contains content.
My attempt to hide the empty footer with CSS failed when I used the following code:
footer.entry-footer:empty {
display:none;
}
Despite my efforts, it seems like either I am making a mistake in my approach or there might be hidden content within the supposedly empty footer!