Changing text color and footer color individually

Whenever I try to change my footer color in my store’s theme customization I can’t

Because the only way for me t change my footer color is by changing my text color

I want to change my footer color to a light color which changes the text on my entire store to a light color as well

1 Like

Hello There,

Please share your store URL and password.
So that I will check and let you know the exact solution here.

  1. Identify the CSS selector for the footer section:

    • Inspect the footer element on your website using browser developer tools.
    • Locate the CSS selector associated with the footer section.
    • Note down the CSS selector name or class for future reference.
  2. Override the footer color using custom CSS:

    • In your theme customization options or in a custom CSS file, add the CSS selector for the footer section.
    • Set the desired background color for the footer using the background-color property.

    Example CSS:

.footer-section {
  background-color: lightgray; /* Replace with your desired light color */
}