Hello @justinea,
Most people want overlays and white text for the slider area i.e. why we made this as common. I am writing down few CSS lines to help you.
/* To remove overlays */
#parallax-bg #slider-inner:before,
.flexslider .slides li .post-image:before{
content: “”;
background: none;
}
#parallax-bg #slider-wrapper .inner-overlay:before,
.flexslider .slides li:before{
background: none;
}
/* For Heading Color */
.slide-bg-section h1,
.slider .captions h1{
color: #555 !important;
}
/* For Sub Heading Color */
.slide-bg-section p.center,
.slider .captions p{
color: #555 !important;
}
/* For Button background and text color */
.slide-bg-section .read-more a,
.slider .slider-button .read-more a{
background: #009b77;
color: #fff !important;
}
/* For Post Category Color */
.slider .captions h6,
.slider .captions h6 a{
color: #555 !important;
}
/* For Button hover background and text Color */
.slide-bg-section .read-more a:hover{
background: #d0be80 !important;
border: 1px solid #d0be80 !important;
color: #fff;
}
To change any color you need to put your hex color code. You can get hex color code from this url:
https://htmlcolorcodes.com/
Copy and paste the above CSS in Appearance -> Customize -> Additional CSS
Regards