(First, it's hard to understand exactly what you're trying to achieve based on the info you provide. Second, you have a lot of problems with your CSS; you are really going to struggle unless you learn the basics. Last, instead of using pastebin.com and gyazo.com, I highly recommend using jquery.net for posting HTML code)
1) The reason why your "Now Playing" shows up on the same line as "Purchase TV" is because of absolute positioning:
.top_line {
...
...
position:absolute;
}
This position property value removes the HTML element from the document flow. Thus, the <div> underneath in your HTML code:
<div class="now_playing" align="right">
<h2>Now Playing</h2>
displays on the same line as <div class="top_line"> in the rendered output.
Best site to learn the different position types:
Just a side note, I would get ride of the depricated align="right" and use style="text-align:right;" instead.
2) It's hard to understand what you are trying to accomplish.
I suggest that you post of picture of how want it to look.
Also, I noticed you have a comment in your CSS: /* NOW PLAYING DIV */ and the code that follows does not correspond to the so-called "Now Playing" <div>. That's only one of the reasons I said you should try to learn the basics. I'm not trying to be harsh; I'm sincerely trying to give you helpful advice.