Why is my mobile footer background color different from the desktop version?

Hi there, for some reason the background color on the mobile version of my website isn’t the same as the desktop version. It should be a teal color. Can someone please help me with the code to adjust this?

www.littletoesch.com is my website.

Thank you!

Try adding this code to the bottom of custom.css

@media (max-width: 749px){
.main-footer-wrapper {
  background-color:#4e959b;
}
}

thank you

1 Like