I'm having an issue with a clickable images in sliders. I'm sure this is more of an issue with my coding skills than BF, though.
Here's the website in question: http://www.propelics.com
I have 4 'page' sliders, set to No Sidebar. They're children of a published "sliders" page. I built these images in Photoshop, then used the Slice Tool to create link areas. They're all the same size, 848x350.
First, here's my BFSlider code:
[bfslider name="slides" type="page" height="350" buttons="style2" pause="15000" animation="fade"]
I first built those slider pages as html table type of thing (standard output of photoshop). This worked great in Firefox, Chrome, Safari, but is broken in IE. Here's the code:
<div style="position:absolute; left:0px; top:0px; width:848px; height:350px;">`<table id="Table_01" width="848" height="350" border="0" cellpadding="0" cellspacing="0">etc....
<tr>
<td colspan="3">
<img src="http://www.propelics.com/wp-content/uploads/2011/10/Slider-4_01.png" width="848" height="210" alt=""></td>
</tr>
<tr>
<td rowspan="4">
<img src="http://www.propelics.com/wp-content/uploads/2011/10/Slider-4_02.png" width="457" height="140" alt=""></td>
<td>
[/code]
etc...
But it produced this output in IE:
http://grabup.teamhim.com/c9298399-8f0e-4df3-b98b-c2a89aa583e6.png
Next I created the same thing in CSS. This is just the Photoshop output of CSS. I don't know what I'm doing, but here's the code:
[code]
<div style="position:absolute; left:0px; top:0px; width:848px; height:210px;">
<img src="http://www.propelics.com/wp-content/uploads/2011/10/Slider-4_01.png" width="848" height="210" alt="">
</div>
<div style="position:absolute; left:0px; top:210px; width:457px; height:140px;">
<img src="http://www.propelics.com/wp-content/uploads/2011/10/Slider-4_02.png" width="457" height="140" alt="">`
This produces working sliders on Firefox, Chrome, Safari, and IE. However, it breaks the fade animation, and the sliding animation doesn't work at all. For the fade, if you watch it, it does a smooth transition from slider 1 to 2, then flashes slider 1 again before going to slider 3. It flashes slider 1 again before going to slider 4. You can see this currently on the site as it is today.
I'm sure this is something simple, but can anyone point out what I'm breaking here? I'm not sure if this is even the right way to perform this task, but it does look quite good. Any and all help would be greatly appreciated!