Header postioning

In this section settings find “Custom CSS”.
Add this code

.content-container {
  padding-top: 1rem; /* default is 4rem */
}

Looks like you already have this in Custom CSS

.content-container {
    margin-bottom: 5em;
}

So you can combine:

.content-container {
  margin-bottom: 5em;
  padding-top: 1rem; /* default is 4rem */
}
1 Like