Hello, I have two issues. I have searched the CSS and PHP files, but cannot seem to get the answer I need. 1. I would like to remove the feature headers and images from the homepage. 2. I would like to use a light gray background for the sliders, which is not an option in the theme. I assume the background is a PNG file, but I have been unable to locate it and change the color. Please help! Thanks!
For your first issue, paste the following code in your custom css Appearance -> Theme Options -> Styling Options -> Custom CSS Code: .feature-left .feature-item img { display: none; } .feature-left .feature-item h6 { display: none; } For your second issue, paste the following code in your custom css Code: .slider-container { background-color: gray; } This will solve your issue.
Thanks, changing the slider background worked. But removing the feature headers removed the entire feature. We also want to remove the left feature header.
Paste the following code in your custom css Appearance -> Theme Options -> Styling Options -> Custom CSS Code: .feature-right h3 { display: none; } This will solve your left feature header issue.