I’m currently working on this page and as it loads initially, the slideshow thumbnails will be where they’re supposed to be but drops second later. I’ve tried changing the CSS from
.pika-thumbs {
width: 995px;
margin-left: 55px;
}
To
.pika-thumbs {
width: 995px;
margin-left: 55px;
position: relative;
top: -150px;
Z-index: 999;
}
and it stayed exactly where I wanted it to stay but the space stays and goes away when I remove the whole like of CSS.
You forgot your semi-colon after
relative:Edit:
This is the reality of using
position: relativeand top with negative values. Trymargin-top: -150px;instead oftop.