I'm trying to align text on the left and on the right side of my footer. The problem is that the text on the right falls a line below the text on the left. I want them to be even on the same line. Any help would be appreciated! Thanks for the help!Here's my code: http://jsfiddle.net/kc6AL/HTML\[code\]<!--Footerline--><div id="footerline"><img src="http://s21.postimg.org/l6t6akypj/line.jpg"/></div><!--Footer--><div id="footer"><h3 class="copyright">Copyright Stuff.</h3><h3 class="social">Social Links.</h3>\[/code\]CSS\[code\]#footerline { width: 100%; overflow: hidden; margin: 5px auto 10px auto; text-align: center;}#footer { max-width: 980px; text-align: center; margin: auto;}h3 {font-family: 'Source Sans Pro', sans-serif; text-transform:uppercase; font-weight : 300; font-size : 14px; color : #000;}.copyright { text-align: left;}.social { text-align: right;}\[/code\]