Hello, i wanna change Newsmag Biggrid5 Style5 to black and when mouseover it becomes red, i wanna change that into a bit of blackish to Normal picture view when mouseover, is that possible?
Can you help me with CSS about it?
http://sonsoz.com.tr check it pls i make some color changes to normal ones but cant seem to change RED color on mouseower i wanna remove the RED…
Thnx…
-
This topic was modified 10 years by
Smanchi.
Hi
I can’t find any big grid 5 on your homepage, only a big grid 4.
To remove the red color when hover over the thumbs from big grid 4 use this css in theme panel > custom code > custom css: http://screencast.com/t/rqKwLgME I changed the color to white but you can use any color, just change its code:
.td_block_big_grid_4 .td-module-thumb:after{
background-color: #fff!important;
}
If this is not what you mean please provide more details, also a screen pointing the desired result will help.
Thanks!
Hi again, i did what i want to understand what i mean, if you check the website again and you see the effect , first light then when mouseover it’s dark , what i want is the opposite of it…
İf I explain it now in a better way…
Sorry about my bad english by the way…
Hi
First remove this code from theme panel > custom css:
.td-big-grid-wrapper .td-module-thumb a:last-child:before {
background: linear-gradient(to bottom,rgba(25, 25, 25, 0) 100%,rgba(25, 25, 25, 0.7) 0%);
}
Then add this code: http://screencast.com/t/yAPFmhmWbW
.td-grid-style-5 .td-module-thumb a:last-child:before {
opacity: 0;
}
.td-grid-style-5 .td-module-thumb:hover a:last-child:before {
opacity: 0.5;
}
Thanks!