skip to Main Content

I have found the element that I need to modify. However, I don’t know where in the theme file or what to put in the additional css to change the padding values. Does anyone know how I might remove or reduce this space? Thank you.
enter image description here

2

Answers


  1. Chosen as BEST ANSWER

    I finally got it after inspecting the element, and literally copying the element into the additional css and reducing the padding.


  2. To do that, go to Appearance → Customize → Additional CSS and enter the following code:

    .site-header {
      padding-bottom: 0;
    }
    

    You could also try like this:

    #page {
    
    margin: 2em auto;
    
    }
    

    CHANGE: 2em to 0em and you’ll have removed the space.

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