Change Background of Newslider from black to a different color
Also, would like to change the color of the orange squares that have the category text
1 Answers
Regarding Changing Background of New slider and the category text from black to a different color, you can log in to Dashboard > Theme > Customize > General Settings > add the following code to Header Scripts:
<style>
.news-slider {
background: #...;
}
.news-slider .carousel-list .other-entry li.active a, .news-slider .carousel-list .other-entry li:hover a {
background: #...;
}
.news-slider .carousel-list .other-entry li.active {
border-left-color: #...;
}
.news-slider .carousel-list .other-entry a {
border-bottom-color: #...;
}
.news-slider .carousel-list h3:before, .news-slider .carousel-list h3:after {
border-top-color: #...;
}
/*--category text */
.news-slider .carousel .carousel-inner .entry-category {
background : #...;
}
</style>
you can find the color here: http://www.w3schools.com/html/html_colornames.asp
Please don’t hesitate to contact us if you have further questions.
Hope this helps !
Regards,
Dominic
Please login or Register to submit your answer