How can I make my list items appear horizontally in a row using CSS?
You could also set them to float to the right.
#ul_top_hypers li { float: right; }
This allows them to still be block level, but will appear on the same line.