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
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.
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.
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
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.