Make Desktop Footer Center

Hi,

I’m using dawn theme. I want my footer same as this image. my site is https://scntwrld.com. Thanks in advance!! with my image above all these navigations - logo image full width .

Does your client know that you’re simply asking this forum for the answers, or are you keeping this a secret?

Oh wise guy !! nice. guess you cant help hahahahahhaa. why even waste the time to post

Lol it’s a perfectly valid question. They have no idea, do they? They think you’re the expert maybe? And then you come here and seek 5 changes every day because you have no clue what to do? Am I right? Hehehe

haven’t seen you help anyone so whose the expert

not a real client anyway. this isnt my job, family friend lol

Well you can tell your “family friend” to add an image block above the menus, then paste this into the footer’s “custom css”

.footer__content-top {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__blocks-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  gap: 2rem;
  justify-items: center;
}
.footer-block:first-child {
  grid-column: 1 / -1;
  justify-self: center;
}

It’s really not that hard. If you need to make a bunch of changes all the time, I would suggest asking Sidekick. It can give you all the code you want.