Change all text to white (#FFFFFF)

Discussion in 'RoadFighter WordPress Theme' started by mybrainsells, Jul 22, 2013.

  1. mybrainsells

    mybrainsells New Member

    Joined:
    Dec 28, 2011
    Messages:
    17
    Likes Received:
    0
    My client wants a black background with white text www.lizaglickman.com. I am able to get most of the changes but the text on pages, posts and some titles elude me. can you please show what css I need to use to make this happen, thank you
     
  2. Piyush

    Piyush Support Staff

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

    Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)

    Code:
    body{
    color: red;
    }
    p,h1,h2,h3,h4,h5,h6,p,a,li {
    color: red ! important;
    }
    .home-content .page_info h1 {
    color: red;
    }
    .home-content .page_info h3 {
    color: red;
    }
    .feature-content .feature-content-inner .feature-content-text h3 a {
    color: red;
    }
    .feature-content .feature-content-inner .feature-content-text p{
    color: red;
    }
     
    .featurebox h2 {
    color: red;
    }
    .feature_testimonial h2 {
    color: red;
    }
    .featurebox .blog_item h4 a {
    color: red;
    }
    .featurebox .blog_item p {
    color: red;
    }
    .feature_testimonial a.testimonial_link {
    color: red;
    }
    .feature_testimonial span {
    color: red;
    }
    .bottom_tagline .bottom_tagline_text h1{
    color: red;
    }
    Inplace of "red" you can put your color or color code.
    This will solve your issue.
     
  3. mybrainsells

    mybrainsells New Member

    Joined:
    Dec 28, 2011
    Messages:
    17
    Likes Received:
    0
    Thanks for the help, that worked. How do I make the text in the testimonial box and on the menu black, it is all white now.
     
  4. mybrainsells

    mybrainsells New Member

    Joined:
    Dec 28, 2011
    Messages:
    17
    Likes Received:
    0
    The testimonial box, the flex-caption and the .header_wrapper .call-us also needs to be black text, how do I code for this, again thank you VERY much for your help
     
  5. 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:
    .header_wrapper .call-us p {
    color: red;
    }
    #menu .ddsmoothmenu li a{
    color: red;
    }
    .flex-caption p{
    color:red;
    }
    .feature_testimonial p {
    color: red;
    }
    
    Inplace of "red" put your color code.
     

Share This Page