Dawn 8.0 / Image banner / desktop view / how not to exceed 80% of the other section when zooming out

Sorry @bibigab . I misunderstood. You can use the code below to apply to all banner instead. Please replace the code provided earlier.

  1. From you Admin page, go to Online store > Themes > Click the three dots on the theme you want to edit > Edit code
  2. Go to Asset folder and open the base.css file
  3. At very end of the code, add the code below
@media screen and (min-width: 750px) {
.banner[id^="Banner-template"] {
    max-width: var(--page-width) !important;
    margin: auto;
}
}