This is due to the theme design is not taking in consideration of situation like this. Our blog filter app also constantly bump into this issue, which creates a really weird content hierarchy.
Some possible solutions (both require tinkling with the code)
If you are familiar with code, you can manually insert the paragraph into the liquid file (with
and
tags etc), it requires some digging as to where / which file to insert. The downside is that it is harder to maintain, as you need to go into the code to update.
Another way (multi steps):
-
Go to your theme code - look for the blog liquid file, and identify the piece of code that generates the blog title (ie Latest News in your screenshot).
-
Copy that code, before commenting them out with {%comment%} {%endcomment%}
-
Your blog title should now be hidden.
-
Go back to your theme customiser, add a Custom Liquid block and insert the code copied in step 2 above, make sure it is above the Blog block. This will add the blog title back.
-
Now you can add the Custom Content block below this Custom Liquid block.
Below is a screenshot. Note your files/ codes might look different as it is a different theme from mine.
