How can I make my list items appear horizontally in a row using CSS?
As @alex said, you could float it right, but if you wanted to keep the markup the same, float it to the left!
#ul_top_hypers li { float: left; }