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.
2
I finally got it after inspecting the element, and literally copying the element into the additional css and reducing the padding.
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.
Click here to cancel reply.
2
Answers
I finally got it after inspecting the element, and literally copying the element into the additional css and reducing the padding.
To do that, go to Appearance → Customize → Additional CSS and enter the following code:
You could also try like this:
CHANGE: 2em to 0em and you’ll have removed the space.