Hello Judit,
You should use a bit of CSS code if you want to change these section. As a hint, you can try using the below code and place it in Theme panel -> Custom CSS area.
.td-grid-style-2 .td-module-thumb a:last-child:before{
background:-webkit-linear-gradient(top, rgba(0, 255, 0, 0) 0%, red 100%);
}
.td-grid-style-2 a{
color:green!important;
}
The result is here -> https://www.screencast.com/t/2AEC5xdJDm
Thanks for your understanding!
Hello Catalin!
Thank you very much!
I was probably misunderstandable because I meant to change the color of the black narrow area behind the letters to red. And I would like to cancel the shade on the bacground image.
Could you please help?
Thank you in advance!
Judit
Hi,
So maybe something like this – https://www.screencast.com/t/vysyDoqqDx
You can change the color and opacity of the color as you wish
.td-grid-style-2 .td-big-grid-meta {
background-color: rgba(255, 0, 0, 0.4);
}
.td-grid-style-2 .td-module-thumb a:last-child:before {
display: none;
}
Thanks