Remove the dark gray/black gradient on picture
1 Answers
To remove the dark gray/black gradient on picture in the DW Focus theme. you can log in to Dashboard > Theme > Customize > General Settings. Add the following code in the “DW Focus header script”
<style>
.news-tab .entry-thumbnail > a:hover:before {
animation: inherit;
}
.widget.news-category .entry-thumbnail > a:hover:before {
animation: inherit;
}
.widget.latest-news .entry-thumbnail > a:hover:before {
animation: inherit;
}
</style>
Hope this helps !
Regards,
Dominic
Hello Dominic,
Same question, but adding de code in style script has no effect. Any other options?
Please add the following code to the style.css file:
.news-tab .entry-thumbnail > a:hover:before {
animation: inherit;
}
.widget.news-category .entry-thumbnail > a:hover:before {
animation: inherit;
}
.widget.latest-news .entry-thumbnail > a:hover:before {
animation: inherit;
}
.widget.news-category .entry-thumbnail>a:before {
background: none;
}
.widget.latest-news .entry-thumbnail>a:before {
background: none;
}
Hope this helps !
Please login or Register to submit your answer