Home › Forums › JavaScript › Anything Slider FX to resize panel › Re: Anything Slider FX to resize panel
February 28, 2013 at 10:42 am
#126441
Member
If I understand correctly you are talking about the Case Studies / Inspiration sections.
It’s because you are relatively positioning the #caseCurrent div.
When you use position:relative, the item is VISUALLY moved but browser still remembers that that space is allocated for the object.
Just change it to position: absolute….that seems to work. You can tweak the left/top value if needed.