Hi all,
i need help please about mouse hover effect in Newsmag tech version
the block in mid page contains one big and 4 anther images
td-big-grid-overlay:after {
bottom: 0;
content: “”;
display: block;
height: 100%;
width: 100%;
position: absolute;
z-index: 0;
opacity: 1;
background: -moz-linear-gradient(45deg, rgba(205, 132, 36, 0.1) 0%, rgba(25, 166, 124, 0.1) 100%);
background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgba(205, 132, 36, 0.1)), color-stop(100%, rgba(25, 166, 124, 0.1)));
background: -webkit-linear-gradient(45deg, rgba(205, 132, 36, 0.1) 0%, rgba(25, 166, 124, 0.1) 100%);
background: -o-linear-gradient(45deg, rgba(205, 132, 36, 0.1) 0%, rgba(25, 166, 124, 0.1) 100%);
background: -ms-linear-gradient(45deg, rgba(205, 132, 36, 0.1) 0%, rgba(25, 166, 124, 0.1) 100%);
background: linear-gradient(45deg, rgba(205, 132, 36, 0.1) 0%, rgba(25, 166, 124, 0.1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=’#1acd8424′, endColorstr=’#1a19a67c’, GradientType=1);
-webkit-transition: opacity 0.2s ease-in-out;
-moz-transition: opacity 0.2s ease-in-out;
-o-transition: opacity 0.2s ease-in-out;
-khtml-transition: opacity 0.2s ease-in-out;
-ms-transition: opacity 0.2s ease-in-out;
transition: opacity 0.2s ease-in-out;
so please what any of the codes above responsible for hover effect to added it to Newspaper slider images.
sorry for my bad English.
Thanks
Hi,
Please try this css in Theme Panel > Custom Css: http://screencast.com/t/1m2Ipjsqwn
.td_block_big_grid .entry-thumb{
opacity: 0.9;
background: -moz-linear-gradient(45deg, rgba(205, 132, 36, 0.1) 0%, rgba(25, 166, 124, 0.1) 100%);
background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgba(205, 132, 36, 0.1)), color-stop(100%, rgba(25, 166, 124, 0.1)));
background: -webkit-linear-gradient(45deg, rgba(205, 132, 36, 0.1) 0%, rgba(25, 166, 124, 0.1) 100%);
background: -o-linear-gradient(45deg, rgba(205, 132, 36, 0.1) 0%, rgba(25, 166, 124, 0.1) 100%);
background: -ms-linear-gradient(45deg, rgba(205, 132, 36, 0.1) 0%, rgba(25, 166, 124, 0.1) 100%);
background: linear-gradient(45deg, rgba(205, 132, 36, 0.1) 0%, rgba(25, 166, 124, 0.1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=’#1acd8424′, endColorstr=’#1a19a67c’, GradientType=1);
-webkit-transition: opacity 0.2s ease-in-out;
-moz-transition: opacity 0.2s ease-in-out;
-o-transition: opacity 0.2s ease-in-out;
-khtml-transition: opacity 0.2s ease-in-out;
-ms-transition: opacity 0.2s ease-in-out;
transition: opacity 0.2s ease-in-out;
}
Thanks!