Why is the last item in my footer menu leaning to the right?

As you can see in the picture above, The 2 items with the red dot are a bit leaning to the right; It seems to only happen when it’s the last item in the menu!

Here is my website link: https://cylindeer.com/

And I am using the Dawn theme.

I hope I can get a solution soon!

hello, @ISamiEagle

Go to online store > themes > actions > edit code

in the file section-footer.css, add this code at the end:

@media screen and (min-width: 750px) {
  .footer-block__details-content>li:last-child {
      margin-right: 1.5rem;
  }
}
1 Like