Okay, it took a bit of tweaking, but I've got something that works.
Problem #1 - Picbox. The way float:left works, a div that has this property will butt up it's left edge with the previous div with float:left. In this case, picbox. I couldn't find an easy way to include picbox in the solution, but to get the same effect:
I. Remove picbox.
II. Add
Code:
padding: 2px;
border: 1px solid #8B846A;
to .stepcarousel .panel css block (in index.html). Keep in mind you need to adjust your sizes accordingly, panel width of 121px and stepcarousel height of 90px worked for me.
Problem #2 - Once you solve that issue, you see that arr-left is the previous float:left, so, we need to fix that.
I: Add float:left; to the .stepcarousel css block (in index.html)
II: The spacing is a little off, picbar width of 411px, arr-right margin-left of 10px, and stepcarousel panel margin of 5px seems to work well.
I *think* that's all you need, lemme know if I left something out.
-M.
Bookmarks