Hello,
after the update the pictures in the static slider are a little bit to dark (the picture gets bigger while put the mouse on it). How can I change it?
Best regards,
Adam
-
This topic was modified 11 years by
shogunteam.
Hi,
@shogunteam Please try this custom css to remove gradient from IOS slider thumbnails – http://screencast.com/t/ZneaSsxS
.td_block_slide .td-image-gradient:before {
display: none;
}
For Big Grids and Big Grid Slider you can use Style 4 – http://screencast.com/t/WHqbfgNQqsA
@skykid Please use Style 4 for Big Grid, and also use this custom css in Theme Panel > Custom Css to remove zoom effect:
.td-hover-1 .td-big-grid-post:hover .td-module-thumb .entry-thumb {
transform: none !important;
-webkit-transform: none !important;
-moz-transform: none !important;
}
Thanks!
Hi,
.td_block_slide .td-image-gradient:before {
display: none;
}
I add it in the theme panel (custom css) and it dindt help..
I mean the zooming effect is gone, but I wanted to beware it. I only want to delete the dark shadow form the pictures..
@alin_vlad – How do you remove the shading on other blocks?
Block 14 & 19 on my site.
Changing to Grid Style 4 for the slide worked perfect.
Thanks – Mark
Hi,
@shogunteam I’m not sure for what slider you want to do this. For Big Grid Slider you can choose Style 4 – http://screencast.com/t/WHqbfgNQqsA
For IOS slider please try to use also !important tag:
.td_block_slide .td-image-gradient:before {
display: none !important;
}
Please provide a link if it doesn’t work.
@hhealth If you want to remove gradient for all modules you can try this custom css: http://screencast.com/t/wU2cz2A4R
.td_module_wrap .td-module-thumb a:last-child:before {
display: none !important;
}
If you want this for each block you can try something like this: http://screencast.com/t/mU0X9p64fw you can use it also for block 14 just change 19 with 14:
.td_block_19 .td-module-thumb a:last-child:before {
display: none !important;
}
Thanks!
PLEASE !
Please give us a Style like in Version 4 of Newspaper.
There is a blue line white letter
AND the blue Banner END at the end of the letters.
Now, in Style 4 the Banner ist bigger than the Newspaper Version 4 , not so nice
@frankberlin You can try to remove the default background to the title on style 4 and add it to the link something like this – http://screencast.com/t/YiCMb9FiQEU but you may need additional customizations. We have added a lot of features and Big Grid styles and unfortunately I’m afraid that it wont be added another style, sorry!
.td-grid-style-4 .entry-title {
background-color: transparent;
}
.td-grid-style-4 .td-big-grid-post .entry-title a {
background-color: rgba(0, 0, 255, 0.52);
padding: 5px;
}
.td-grid-style-4 .td-big-thumb .entry-title {
font-size: 22px;
line-height: 39px;
}
.td-grid-style-4 .td-small-thumb .entry-title {
line-height: 30px !important;
}
Thanks!
