Increase padding between announcement bar and navigation bar for Boundless theme

Hi @napali

Designer or Developer? Seems like there are inset custom code in the header. Check this one then.

  1. From you Admin page, go to Online Store > Themes
  2. Select the theme you want to edit
  3. Under the Asset folder, open the main.css(base.css, style.css or theme.css)
  4. Then place the code below at the very bottom of the file.
.site-nav {
    margin-top: 5rem;
}
@media only screen and (max-width: 767px){
.grid.grid--no-gutters.grid--table.site-header__inner {
    margin-top: 2.5rem;
}
}