Hi Guys
Thanks for all your help.
Problem solved and it works on all pages containing this module, for those interested here is what I did.
In my module.css file I created extra classes:
.moduleContent {position:relative;}
.Selections{
position:relative;
width:400px;
height:50px;
}
.GoButton{
position:absolute;
left:400px;
top:0px;
}
In my SQLGeidSelectonView.ascx I added the classes:
I wrapped the module in the moduleContent class
<div class="moduleContent"> MODULE HERE </div>
I added the Selections class to this Runat Server section
<asp:panel id="pnlSelections" Runat="server" CssClass="Selections" >
I added the GoButton class to this Runat server section:
<asp:panel id="pnlSingleGoButton" Runat="server" CssClass="GoButton">
FTP'd and it worked. Phew, all this just to move a button.
Lynn