Screenshot 2025-02-11 at 10.02.53.png
if i look at your textbox, it seems that the text element has additional spacing (blue gap on top)
the reason for this is your text element doesnt just contain text, but it contains addition html markup:
Screenshot 2025-02-11 at 10.04.53.png
<div class="flex flex-col gap-2 items-start…"
you may have copied the text from another website and pasted it into the texteditor.
however, this also copies over the HTML, not just the text.
so i would go to this textbox in /wp-admin/, edit the text, click the <> code button:
Screenshot 2025-02-11 at 10.07.17.png
and remove the outer div, so we only have the inner <p tag
so basically you just want this part inside the code:
Screenshot 2025-02-11 at 10.08.30.png
next time you copy text from a website or pdf, if you want to make sure theres not extra HTML, you can first paste it into a texteditor, then copy it from there and then paste it into the gridder textbox