Hi,
I have the big grid on my homepage but I don’t like the overlay that makes all of the pictures light/look dark on mouseover, can this be removed?
Many thanks
D
Hi,
Please try this custom css, add it in theme panel > custom css section: http://screencast.com/t/JXxkusTd0V
.td_block_big_grid .td-image-gradient:before {
display: none;
}
Thanks
-
This reply was modified 11 years by
Lucian.
i have added custom css to get normal images on big grid.
.td-image-gradient:before{
background: transparent;
}
.td-module-thumb a:last-child:before{
background: transparent !important;
}
Didint workded.
Hi,
I see that you managed to solve this with Lucian css: http://screencast.com/t/cRG2pbFqC
Also your css for other blocks/modules gradient should work: http://screencast.com/t/mzrc4z43O7 you can also try display none:
.td-module-thumb a:last-child:before{
display: none !important;
}
Thanks!
now i have all this still there is gradient or layer on the picture.
.td-image-gradient:before{
background: transparent;
}
.td-module-thumb a:last-child:before{
background: transparent !important;
}
.td-big-grid-post .td-image-gradient:before {
display: none;
}
.td-module-thumb a:last-child:before{
display: none !important;
}
-
This reply was modified 11 years by
lospicos.
Hi,
Your css code is applying there: http://screencast.com/t/9EbdQtmyok88
This is how it looks with gradient and without: http://screencast.com/t/sJvbXOZt – http://screencast.com/t/EGIEkNWJkw
Thanks!
Hi,
What you have on Big Grid is opacity, the gradient was already disabled with Lucian’s code.
Please try this custom css to remove opacity: http://screencast.com/t/jn25xGJ8hf5p
.td-big-grid-overlay:after{
display: none !important;
}
Thanks!
