1
vote
Why is my DIV smaller than its contents?
The absolute positioning is the reason the images are over the text (since nothing is giving the #slideshow <div> any height), but your system needs the images to be absolutely p …
2
votes
How can i get List items to stay together using CSS?
You could set the <ul> to
display: inline-block;
You might also want to clear: left; your images, since it's possible that they co …
2
votes
How to position the split line caused by background repeat.
A straightforward way to do this without any CSS trickery or extra markup is to modify the image. Center the background image with:
background-position: top center;
…
