Change text color

Discussion in 'Dzonia WordPress Theme' started by deveshd, Jul 26, 2013.

  1. deveshd

    deveshd Member

    Joined:
    Jul 21, 2012
    Messages:
    282
    Likes Received:
    4
  2. Piyush

    Piyush Support Staff

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

    Paste the code given below in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    h1,h2,h3,h4,h5,h6,a,p,span,li, body,.widget_inner,.post-info,#respond label,.content_wrapper #searchform #s, .sidebar #searchform #s, .footer #searchform #s{
    color:red ! important;
    }
    Inplace of "red" you can put your color or color code.
    This will solve your issue.
     
  3. deveshd

    deveshd Member

    Joined:
    Jul 21, 2012
    Messages:
    282
    Likes Received:
    4
    Works! Thanks! but I'd like to keep the top navigation and text box hover over sliders to stay as white text, how do I fix that?
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Paste the code given below in Custom CSS

    Code:
    #menu li a {
    color: white ! important;
    }
    #menu .ddsmoothmenu li li a:link, #menu .ddsmoothmenu li li a:visited {
    color: black ! important;
    }
    #slides .caption h2 a{
    color: white ! important;
    }
    #slides .caption p {
    color: white ! important;
    }
    This will solve your issue.
     
  5. deveshd

    deveshd Member

    Joined:
    Jul 21, 2012
    Messages:
    282
    Likes Received:
    4
    Worked only one final thing on the color change, I also used
    h1,h2,h3,h4,h5,h6, #s{
    color:#660033 ! important;
    }
    which changed the headings different color from text BUT the title/ heading forthe 3 first feature is still black what do I need to fix?
     
  6. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Paste the code given below in Custom CSS

    Code:
    .featured_content .column-three .col3 .inner_area h2 a {
    color: red ! important;
    }
    Inplace of "red" you can put your color or color code.
    This will solve your issue.
     

Share This Page