I have a script, which has been causing me quite some issue today. :-) The script is apparently placing inline styles on the target element, but I can't find where they are defined.
So the script is a slider called EasySlider. It works quite nicely to display featured content in a slide fashion. However, the script is putting an inline height on the targeted element, which is behaving oddly in Chrome. But to be honest, I'm not sure why or where the inline height is being defined from anyway.
So the height of the #slider is defined as 265px in my stylesheet. But in Chrome, the script puts an inline height of 21px, and in Firefox it renders with an inline height of 271px (exactly 21px more than my defined height).
Any tips on this one? Here's the page in question, the elements being the sliders for each Rod posting: http://tuscaroratackle.com/rods/
The markup is generically like this, and the script makes this into an animated slider and generates nav buttons:
<div id="slider-1">
<ul>
<li><img src="/img/rod.jpg" /></li>
<li><img src="/img/rod.jpg" /></li>
<li><img src="/img/rod.jpg" /></li>
<ul>
</div>