Why is this blog tag issue happening on mobile devices?

The tags and ‘read now’ are rendering over top of the blog explanation… can you please advise to fix

Hello Mike,

Thanks for writing in!

Are you referring to this issue?
Screen Shot 2020-12-10 at 10.18.07 AM

This issue is happening because you have inserted this custom CSS code:

.x-iso-container-posts.cols-3 .entry-wrap {
    min-height: 390px;
    max-height: 390px;
}

To get your issue resolve, please remove your custom CSS or at least enclose your custom CSS code with @media block so that it will only be applied on larger screens. For example;

@media(min-width: 980px){
   /* your custom CSS here */
}

For more details about the @media CSS block, kindly check this out:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.