The HTML layout I am using is having problems:

1) The "Now Playing" bar on the right won't move down to fit in nicely with the rest of the layout no matter what settings I change (left, margin-left, margin-top, top, etc.)

2) When zooming, the "Now Playing" bar on the right is disproportional to the rest of the layout, and isn't "liquid" and I don't know how to make it fit for every zoom.

Here is the code:

HTML - http://pastebin.com/qiGPzpAk CSS - http://pastebin.com/T8e8pXjv

Here is a screenshot of how it looks:

http://gyazo.com/a36a5f6c199498e9a88dc2725e52fe3e

Thank you

link|improve this question

47% accept rate
Please don't link to ad-driven screenshot sites. Use the built-in imgur site that Stack Overflow has a deal with. – Lasse V. Karlsen Nov 15 '11 at 13:27
Please edit your question to include the relevant code inline, as well as the images as Lasse suggests. When you have, please flag this for moderator attention to be re-opened. – Tim Post Nov 15 '11 at 14:38
feedback

closed as too localized by Tim Post Nov 15 '11 at 14:38

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

1 Answer

(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.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.