changing font color in footer

Discussion in 'ButterBelly WordPress Theme' started by sbacigalupi, Mar 15, 2014.

  1. sbacigalupi

    sbacigalupi Member

    Joined:
    Feb 17, 2014
    Messages:
    35
    Likes Received:
    1
    I'm finding it very difficult to write a CSS rule that will change all the footer text in the widgets from white to any other color. Adding extra weight to the selector also doesn't seem to help, even even overwriting individual rules with the exact same selector and adding !important isn't doing the trick. Here's what I'm trying to use:

    .footer_container{color: black !important;}
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .footer .footer_widget h4 {
    color: red;
    }
    .footer .footer_widget p, .footer .footer_widget a,.footer .footer_widget li,.footer .footer_widget span{
    color: red;
    } 
    In place of "red" you can put your color or color code.
    This will solve your issue.
     

Share This Page