The forums ran from 2008-2020 and are now closed and viewable here as an archive.
Home › Forums › CSS › Slideshow slides out of place
Each slide is out of place in between transitions. I tried to adjust positioning of divs.
http://hopperopolis.com
You need to remove all the <br> tags between each image. I’m not sure how they are being managed, but if you have access to the HTML and can remove those, it should work.
In case you can’t edit html, you can write this line to hide the br tags.
#pb_slideshow_slider-1 > img + br { display: none; }
Resloved! I didn’t know you can hide br tags.