skip to Main Content

I am trying to remove the white space at the top of my WordPress website.

https://www.productlondondesign.com/

White at top of page

I have tried to inspect the page and figure out what is causing it to remove it via style.cc but I can’t get anything to work.

2

Answers


  1. The issue is that your container has a padding:

    Just add this up in the "Additional CSS" section of the customizer i.e., https://i.imgur.com/i2XESAl.png

    #main-content.container {
       padding-top: 0;
    }
    

    https://www.productlondondesign.com/wp-admin/customize.php

    Please mark this answer as solved/accepted if it helps.

    Regards

    Login or Signup to reply.
  2. The problem is your HTML, there is an empty P inside main content. this P push content down
    enter image description here

    If you remove it (or display none or remove margin) it fixes the problem

    enter image description here

    Also, try to learn how to use the inspector so you can find those issues, this kind of problem may not go well on stack overflow

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search