hey, so i’m trying to make an image slider on the right side, but when I’m adding position: absolute; the images disappear.
I edited your post so that the link you provided has a title. Otherwise people may not want to click it
1 Like
when you made the images absolute, you took them out of their container and made them live outside the flow. So they lost their size (because you said their size is 100% of the container which became empty so they are also of no size)
Also their container lost its size too cause it became empty.
Try this:
.huntersImg {
width: 100px;
height: 100px;
}
1 Like
thank you it workedddd