Hey. Am wondering why my site's logo is not aligning to the top right as it should be? I don't understand why its placement is where it currently is. Check it out here: http://www.grandayum.com
The logo is the one with the red car graphic right? I see it on the right of your text content.. It would be on the absolute top right?
I think the trouble is that your header tags. See you have this <h1>Pontiac Grand Am Resource Site</h1> <div class="grand-am"><img src="grand-am.gif" alt="Pontiac Grand Am" /></div> .grand-am { float: right; margin: 10px; text-align: top; } Maybe give this a try <div class="head">Pontiac Grand Am Resource Site</div> <div class="grand-am"><img src="grand-am.gif" alt="Pontiac Grand Am" /></div> .grand-am { float: right; margin: 10px; text-align: top; } .head { font-size:16px; } When you use a header tag it is also saying put a line break below the text. Hope that helps