Ok I have read through a huge portion of all the issues with div and absolute positioning. I think my problem is using the absolute tag. With in VS2010 my Master.Site page has a JPG that is image mapped. I have placed Div’s with absolute positioning over the top of this in all the pages that inherit from this. With in VS2010 designer the div’s do not appear to be on the page, but when i run it locally it looks fine. When I put it up on the IIS server it looks fine, on my machine. On Mac’s and older PC’s they are off the amount that they are off in the designer. Why don’t I see it the same? If I make it look right in the designer then it looks wrong on My machine.
`<div style="position: absolute; top: 321px; left: 900px; height: 427px; width: 602px; z-index: auto; float: none;`
you can see this at http://www.cbfnet.com/test3
You’re missing a position:relative on the parent div. Add that style to your .main class, then re-adjust your ‘left:’ value.