Hello, I need help changing the colors on the following; 1. Copyright footer color 2. Widget text color - bottom/footer widgets only 3. Read More button on Home page - change color 4. Main Heading Text Color 5. Feature Heading Text Color 6. Left Column Heading Color 7. Right Column Heading Color 8. Can I change just the link colors on the buttons, home page and events page My Site http://howelloperahouse.webworldadvantage.com/ Also I am using the event plugin from Modern Tribe and the event pages are not aligning properly, they are squeezed right up to the left margin. http://howelloperahouse.webworldadvantage.com/event/open-studio/
Hello, 1) Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .bottom-footer .footer_bottom_inner span.copyright{ color: YOUR COLOR VALUE; } 2) Code: div.textwidget{ color: YOUR COLOR VALUE; } .widget_inner { color: YOUR COLOR VALUE; } .footer ul li a{ color: YOUR COLOR VALUE; } 3) Code: .bottom-feature .bottom-feature-left .bottom-feature-left-inner a.index-read{ background: YOUR COLOR VALUE; border-radius: 12px; } 4) Code: .feature-content h1{ color: YOUR COLOR VALUE; } 5) Code: .feature-content .feature-item h4{ color: YOUR COLOR VALUE; } 6) Code: .bottom-feature-left h1{ color: YOUR COLOR VALUE; } 7) Code: .bottom-feature-right h1{ color: YOUR COLOR VALUE; } 8) Code: #tribe-events-content a{ color: YOUR COLOR VALUE; } And for alignment. Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: #tribe-events-pg-template { max-width: 900px!important; } Thanks & Regards Nitesh Raghuwanshi
Thank you so much, I have just one more question. How do I change the background color of the copyright footer?
Hello, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: div.bottom-footer { background: red; } Thanks & Regards Gourav Shrivastava
One more if you have a minute...the header text of the footer widgets, can I change that to black? http://howelloperahouse.webworldadvantage.com/
Hello, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .footer h4 { color: black; } In place of "black" you can put your color or color code. This will solve your issue.