How to change the Footer only text color in Fresh theme

Hi, I want to change the text color to white in my footer only. The current text is purple/gray, and it doesn’t show up. My theme is Theme163, called “Fresh” theme from Template Monster. Thanks so much!

Hey @rickshelton

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Hello @rickshelton ,

I understand you are looking to change the text color to white in the footer of your shopify store https://thecoffeepotters.com . For this you need to make some CSS modifications.

Please follow the following steps-:

  1. Go to the Online store and select Themes.

  2. Click on the Action button (three dots) and then choose Edit code.

  3. In the code editor, you will need to find the .css file (base.css/style.css/theme.css)

  4. Now you have to find the below mentioned div class tag in your css file and change the color to white in it.

footer, footer a {

color: white;

}

After changes output will be like this → https://prnt.sc/6S_fvjUWcKk8

footer h3{

color: white;

}

Output → https://prnt.sc/WaHXT2sVoTR8

.footer_social a i {

color: white;

}

Output → https://prnt.sc/PEkMzGVnS7ZY

[Note: If you also want to change the hover color also in footer section, then please make changes in below mentioned tag also]

.footer_block ul li.active a, .footer_block ul li a:hover {
color: #9ae305;
}

Output → https://prnt.sc/SnaWifehqr-d

  1. Save changes

I hope the solution helps you.

Kindly let me know if you have any query.

Thank you.

Thanks so much, Anshul! The Social Media fix worked perfectly! I wasn’t able to get the hover color to change with the second code, but I’ll work that out another time. Thank you again, and I appreciate your looking into it!

Thank you.