Hi
It's me again. Still no answer on my problem...
Perhaps someone can help me. When i look into the image-carousel css i see that the dimensions are absolutly wrong:
element.style {
transition: all 2500ms ease 0s;
transform: translate3d(-7080px, 0px, 0px);
width: 26620px;
height: 500px;
}
The values for translate3d and width/height are too big. They should be like this
element.style {
transition: all 2500ms ease 0s;
transform: translate3d(0px, 0px, 0px);
width: 15000px;
height: 150px;
}
I tried to change this with a custom css in the component-settings. It is possible to change the width but no effect on the height-value. Any idea how to do this? Would be happy if there would be a forums reponse for help.
br, Robert