can someone help me how to transform this vertical timeline to horizontal: http://jsfiddle.net/yinnette/XdQ5Y/
<div class="timeline">
thanks a lot !
if you just need to make horizontal from this you can use rule
.timeline{
transform: rotate(-90deg);
-webkit-transform: rotate(-90deg);/** Chrome & Safari **/
-o-transform: rotate(-90deg); /** Opera **/
-moz-transform: rotate(-90deg); /** Firefox **/
}