Thanks, that is probably the problem. Even an attached file was too big, so that is out also. Was attempting to send everything involved. So..., maybe an explanation of the issue clearly defined with just a piece of code at a time is sufficient.
The page in question is all ASP.NET 2.0 developed with VWD. The asp server controls all use the 'Style=' parm which states to use absolute position and gives a 'Left:' position, a 'Width' size and also a 'z-index'. These are supposed to dictate the position on the page, thus the prescribed appearance is rendered.
One of the controls(a Gridview) ends up shifted far to the right. The other controls are fine. Other pages work fine using similiar controls.
The server renders the control to the browser as a Table which contains the exact position from developed source as seen below.
<table cellspacing="0" cellpadding="1" align="Center" rules="cols" border="1" id="GridView1" style="width:467px;height:133px;font-weight:normal;font-size:11pt; color:Black;border-width:1px;border-style:solid;border-color:Tan; background-color:LightGoldenrodYellow;border-collapse:collapse;z-index: 119; left: 493px;
position: absolute; top: 170px; text-align: center; border-left-color: #0066ff; border-bottom-color: #0066ff; color: #0033ff; border-top-style: double;
border-top-color: #0066ff; border-right-style: double; border-left-style: double; border-right-color: #0066ff;
border-bottom-style: double; font-style: italic;"> .........so forth
Obviously, other factors must be overriding the position, but I'm new at this and don't have a clue as to what I should be looking for.That is why I was attempting to send everything involved. It's probably some dummy error on my part. All the other renderings follow the 'Style=' settings, so I'm at a loss to figure it out. IE7 works as tested, Firefox shifts to the right only on the one Gridview.
Thanks for any assistance you can provide. Any thoughts?