Different Text Colour on Footer Widgets

Discussion in 'Blackriders WordPress Theme' started by alexdimartino, Mar 26, 2014.

Thread Status:
Not open for further replies.
  1. alexdimartino

    alexdimartino Member

    Joined:
    May 1, 2012
    Messages:
    41
    Likes Received:
    1
    I have a dark background on the all site therefore I use a White Font Colour. But the footer area -- where the 4 Footer Widgets are -- is a lighter and I need to change the font colour ONLY in the 4 Footer Widgets to a darker colour, how do I do that?

    Many thanks for your help.

    Alex
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
     .footer_container_wrapper p {
    color: red!important;
    }
    Inplace of "red" put your color code.

    Thanks & Regards
    Gourav Shrivastava
     
  3. alexdimartino

    alexdimartino Member

    Joined:
    May 1, 2012
    Messages:
    41
    Likes Received:
    1
    Thanks for this.

    I removed this code:

    .footer .footer_widget p {
    color: #414040!important;
    }

    And I put the one you gave me above but it doesnt work maybe because I have placed some text in the Footer Widgets? And that text is white like the rest of the site.

    Please check: alexdimartino.com to see what I mean. Thanks.
     
  4. 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 .textwidget {
    color: red ! important;
    }
    .footer .footer_widget a {
    color: red;
    }
    .footer .footer_widget p{
    color: red ! important;
    }
    .bottom_footer_content .copyrightinfo p {
    color: red ! important;
    }
     
    In place of "red" you can put your color or color code.
    This will solve your issue.
     
  5. alexdimartino

    alexdimartino Member

    Joined:
    May 1, 2012
    Messages:
    41
    Likes Received:
    1
    brilliant! Thanks Piyush, that really solved the issue!
     
    Piyush likes this.
Thread Status:
Not open for further replies.

Share This Page