How do I change the color of text on home page and inside pages/posts, from grey to black? URL http://webworxworld.com/client-demo8
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.
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?
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.
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?
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.