Hey,
I am using the slider module in a column (50%).
I know that is not the recommended column width and therefore the slider image is not cropped.
It shows some blank space on the bottom.
Does sb. know how to stretch the image inside the slider?
Thanks a lot!
gwenos.com ( u can see it on the homepage under the quote)
Hi Gwen,
If your featured image is larger that the thumb size, regenerating your thumbnails should fix your issue – https://forum.tagdiv.com/using-the-theme-with-existing-content/
If the issue persist you can try this custom css in Theme Panel > Custom Css, it will be applied on for homepage slider – http://screencast.com/t/y1HfGqAkm
.home .td-pb-span6 .td_block_slide .td-module-thumb, .home .td-pb-span6 .td_block_slide .td-module-thumb .entry-thumb {
height: 100%;
}
Hope this helps!
-
This reply was modified 10 years by
Alin [tagDiv].
Hi
this may seem dumb; but add the thumbnail upscale plugin, the regenerate thumbnails plugin; run the regenerate thumbnails plugin; then rebuild your slider with new images so that the larger versions are used/cached vs the original smaller ones.
I had this happen once and drove me up the wall – then went, duh. Rebuilding the slider AFTER I had the larger image versions on server worked.
Might not help or be your issue, but worth a try.
try this in custom css
.iosSlider-col-2 .entry-thumb {
width: 696px;
margin-top: 105px !important;
}
tell me if you find any other problem related to this slider issue on other pages
And this also for re position of next and prev icon on slider
.td-theme-slider:hover .td-icon-left, .td-theme-slider:hover .td-icon-right {
opacity: 1;
z-index: 1;
margin-top: 12px;
}
these two codes will solve your problem 100%
try this one
body.td-animation-stack-type0 .td-animation-stack .entry-thumb, body.td-animation-stack-type0 .post img {
opacity: 0;
margin-top: 105px !important;
}
tell me if this not work
and if all the previous code does not work then remove all those previous css code and try this it will 200% will work if not then there is some other issue or may be any silly mistakes
.iosSlider-col-2 .td_module_slide {
height: 280px !important;
}
tell me if your problem solved
try this one by removing previous custom css code if last one did not worked
.td-js-loaded .td_block_slide .td_module_slide {
visibility: visible !important;
height: 280px !important;
}
this is the last attempt from me.
Hey guys, thanks a lot for your effort!
Finally the slider is “stretched” to its max. values
I added the following CSS:
.iosSlider-col-2 .entry-thumb {
height:100% !important;
}
.home .td-pb-span6 .td_block_slide .td-module-thumb, .home .td-pb-span6 .td_block_slide .td-module-thumb .entry-thumb {
height: 100%;
width:auto;
}
