Hi,
On 13 Sep., 15:07, Chboc <
boca.alexan...@...> wrote:
> Hello,
>
> I had a bug on the next and previous button, the height isn't applied.
> I want 13px but on IE6 i get 19px, how to set the height to 13px?
>
> example of my jcarousselhttp://www.hybridbears.com/jcaroussel/index.htm
that happens due to the fact that IE6 can't handle empty divs
properly. Try to build up the jcarousel markup like (note the comments
inside the divs):
<div id="mycarousel">
<div class="jcarousel-prev"><!-- spacer --></div>
<div class="jcarousel-next"><!-- spacer --></div>
<ul>
<li>...</li>
</ul>
</div>
Jan