• This is my website : http://techeel.com/

    I want to change the color of this text “Copyright © 2015 Techeel.Com. Powered by WordPress and Stargazer.” at the footer. I’m using the Stargazer theme from Theme Hybrid, with Ex Astris WordPress child theme. Please help me.

    Thank you so much for your effort.

    Sincerely,

    Athul.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Add these rules to your Custom CSS:

    .layout-1c #footer .credit,
    .layout-2c-l #footer .credit,
    .layout-2c-r #footer .credit {
       color: #ff0000;
    }
    .layout-1c #footer .credit a,
    .layout-2c-l #footer .credit a,
    .layout-2c-r #footer .credit a {
       color: #0000ff;
    }

    The first rule is for the plain text, the second rule is for the links. The first rule is red for the color value, the second rule is blue. You can use this tool to select which hex code to use for the colors that you want.

    Thread Starter Athul

    (@athulumar)

    CrouchingBruin, I wanted to hide the credits link. I’m so thankful to you. You made my day.

    I’ve done it:)

    http://techeel.com/

    Hugs 🙂

    Athul

    OK, you should have mentioned that in the beginning, because the credits are still there, they are just the same color as the surrounding text. If you wanted to hide the credits, then you could have just used this rule:

    .layout-1c #footer .credit,
    .layout-2c-l #footer .credit,
    .layout-2c-r #footer .credit {
       display: none;
    }

    Thread Starter Athul

    (@athulumar)

    Ohh My Goodness, Thank you so much…It is now gone,

    A big hug from India.

    Athul

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Please help me to change the Footer Text Color’ is closed to new replies.