Page Margin on mobile view

Attached a screenshot of what i facing on mobile view.
The bottom of the page have empty margin which i wand to reduce it.
How can i do that?

Thx

Hi there,

Thanks for writing around! Can you please share the URL of the page in question so we can take a look?

Thanks!

(https://tarekrabaa.com)

thx

Hello there,

You’ve added a script on a Text element in that section that generated a <p> tag as its wrapper, that is why there is an empty spacing beneath.

To fix this, first, you need to select that Text element in your builder, then use the Element CSS feature. Here’s a guide to help you with using the Element CSS:

Then add this code into the Element CSS:

$el p {
    margin: 0 !important;
}

Hope this helps.

1 Like

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