Viewing 3 replies - 1 through 3 (of 3 total)
  • Hey @b62eu7db,

    Thanks for reaching out to us.

    It seems there is a padding-right declaration on the entire body element, which is causing extra space on the right side of the header, content area, and footer. To address this, you can add the following CSS code under Appearance > Customize > Additional CSS:

    body {
    padding-right: 0;
    }

    If this doesn’t resolve the issue, try adding the !important property to ensure it overrides existing styles, like this:

    body {
    padding-right: 0 !important;
    }

    I hope this helps.

    Thread Starter b62eu7db

    (@b62eu7db)

    Thank you, Rajab.

    There’s still a thin white border around all sides of the header but it looks much better than before.

    We’ll probably we’ll need to delete and redo the entire site.

    Thanks again.

    Alain

    Hi @b62eu7db,

    Thank you for getting back to us.

    It looks like you have a font CSS file that is adding the extra padding. To fix the issue, would you mind adding the following CSS to site:

    html {
    padding: 0 !important;
    }

    body {
    padding: 0 !important;
    }

    Please let me know if this works for you.

Viewing 3 replies - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.