Changing color on the footer text

Discussion in 'GoldenEagle WordPress Theme' started by dmiot27, Nov 3, 2012.

  1. dmiot27

    dmiot27 New Member

    Joined:
    Sep 18, 2012
    Messages:
    5
    Likes Received:
    0
    Is it possible to change the color on the footer text?
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    .footer .footer-inner h3 {
    color: red;
    }
    .footer .footer-inner ul li a {
    color: red;
    }
    .footer .footer-inner p {
    color: red;
    }
    Inplace of "red" put your color code.
     
  3. dmiot27

    dmiot27 New Member

    Joined:
    Sep 18, 2012
    Messages:
    5
    Likes Received:
    0
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    We have seen your website you have added color code #FFFAF0 and it is display at your footer. If you want another color you can edit it in same code.

    [​IMG]
     
  5. dmiot27

    dmiot27 New Member

    Joined:
    Sep 18, 2012
    Messages:
    5
    Likes Received:
    0
    you're right....my mistake. I meant the text at the very bottom of the site (which I thought was called the footer) which reads:
    Abigail Adams Portrait - courtesy of the Massachusetts Historical Society
    Is there any way to change that?
     
  6. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .footer-bottom .copyright {
    color: red;
    }
    This will solve your issue.
     

Share This Page