Remove space between content and header

Hi folks, I need help with something basic. How can I remove space between content and header? I tried to fix this problem, but with no results. Can anybody tell me how could I remove the space between them? I would be grateful.

Try changing this in style.css:

.site-content {
    padding-top: 1em;
}

To this:

.site-content {
    padding-top: 0;
}

Consider creating a child theme otherwise all your customization will be overwritten when you next update your theme.

Alternately:
– If your theme has a custom CSS option, use that to add the CSS.
– If you are using WordPress 4.7+, use the “Additional CSS” option in the customizer.
– If not, install the plugin Simple Custom CSS

Hey there!
adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

.container_wrap_first .content {padding-top:0px !important;}