Hello jfrere,
Please provide your website URL and specify where exactly you want to change the gradient. Be more specific to what kind of grid you refer to so I can identify it and also, so I will be able to provide a more accurate response.
Thanks for your understanding!
http://dev.centre-tomatis-geneve.ch/
I’m using slide, then big grid. Need to change the gradient on both of them. (applied over the post featured image), then I need to change text color for the title of the post.
Hello jfrere,
If you want to change the parameters from the gradient which applied at the feature images on the big Grid, you should use a bit of CSS code and change the following parameters. Use the code below and add your color code you like.
.td-image-gradient:before{
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}
Thanks for your understanding!
Hi,
For the grid you can try a code like this
– https://www.screencast.com/t/LBNkF6Ul
.td-grid-style-1 .td-module-thumb a:last-child:before {
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}
Thanks
Hi,
For the text you can use this code – https://www.screencast.com/t/TDKXP8aH
.td_block_big_grid .td-module-title a {
color: black;
}
Thanks