Im having trouble aligning 3 elements in a list.
Here is the link to my problem:
http://mistirio.com/codecanyon/beta_flexi/
I the only way i could fetch those sliders and their labels in the correct form is by using :
float: left; to each element.
But that puts them on the left of the page. Which is pretty obvious.
Doing nothing messes it up.
All help appreciated
Replace
float: leftwithdisplay: inline-block. Thetext-align: centerthat you have on a parent element will then center the sliders.If you need IE6/7 support, use
display: inline-block; *display: inline; zoom: 1. More info.