Issue with position of headers on the Blog template
When using the Blog tempate and viewing a single entry, the <h5>
elements for Tags, Date, Next, and Previously all appear on top of each other in the top left of the page. Looking through the CSS, it appears that .label-left h5
is set to position:absolute
, which explains the behavior. Adding position:relative
to the CSS rules for .label-left
ensures that the parent element of the <h5>
is set to relative, which fixes the issue with their absolute positioning.
Good spot, this is a bug with the blog template which I will fix and follow up here about
Answered 10 months ago ยท Edit answer