[Solved] Logo on mobile view not centered [closed]


with this css your can align your logo to center:


@media screen and (max-width: 767px) {

  .header-content-one .d-flex {
    display: flex;
    justify-content: center;
  }

  .header-content-one .d-flex a{
    width: 100%;
  }

}

I’ve setted up a breakpoint to 767px (the code work only for smaller screen) change it to the measure you want.

1

solved Logo on mobile view not centered [closed]