How to Change Font Colors in Footer Widgets and Footer?

Discussion in 'Infoway WordPress Theme' started by timlayton, Mar 6, 2013.

  1. timlayton

    timlayton New Member

    Joined:
    Aug 12, 2012
    Messages:
    13
    Likes Received:
    0
    I need to be able to change the font colors (normal, hover, clicked) for the 4 footer widgets and also the footer. What is the CSS I need to enter to do this?

    Thank you


     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .footer .footer_widget h4 {
    color: red;
    }
    .footer .footer_widget h4:hover {
    color: blue;
    }
    .footer p {
    color: red;
    }
    .footer p:hover {
    color: blue;
    }
    .footer ul li a {
    color: red;
    }
    .footer ul li a:hover {
    color: blue;
    }
    This will solve your issue.
     
  3. timlayton

    timlayton New Member

    Joined:
    Aug 12, 2012
    Messages:
    13
    Likes Received:
    0
    That helped, but did not work completely.

    If you go to www.gateway2give.com and look at the 4 footer widget areas as well as the footer, the CSS code does not fully work.

    Based on your CSS code, the first and fourth widget area text is still black and the links are blue.

    I need all of the text in the 4 footer widget areas and the footer to be white at all times.

    I have included the CSS code that I used to try and make all of my text white in the 4 widget areas and footer.

    .footer .footer_widget h4 {
    color: white;
    }
    .footer .footer_widget h4:hover {
    color: white;
    }
    .footer p {
    color: white;
    }

    .footer p:hover {
    color: white;
    }

    .footer ul li a {
    color: white;
    }

    .footer ul li a:hover {
    color: white;
    }
     
  4. 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 div.textwidget {
    color: white;
    }
    .footer p a {
    color: white;
    }
     

Share This Page