How can I modify the color and size of my website footer's social media text?

website: leofotosoar.com

the text color of the social media section in the footer becomes black when I add the link in, see below image, what code should I add to get the text to be the same white color like the other ones?

also, the whole footer section is so big when scrolled all the way down, Is there a way to decrease the black space at the end?

Any help would be appreciated.

Hello,

Adding the below CSS code at the end of your custom.css file should answer your question.

.newsletter-footer p a, .footer-email-input::placeholder {
  color: white !important;
}
footer .grid__item {
  padding-bottom: 0 !important;
}

Let me know if this helped.

Cheers!

1 Like