I am trying to line up my linkbutton with the rad autocomplete but no matter what I do it always goes to the next line and the linkbutton is on next line instead of inline with the autocomplete. Dont know hat kind of wierd styling this thing has but it will not allow anything inline with it. how can I put my linkbutton inline with the autocomplete. Even tried using a div but also no go.
<table style="width:100%"> <tr> <td style="width:100%;text-align:center"> <telerik:RadAutoCompleteBox ID="radAutoComplete" runat="server" OnClientRequesting="requesting" EmptyMessage="Enter Users Last Name First Name." InputType="Text" TextSettings-SelectionMode="Single"> <WebServiceSettings path="../AutoComplete.asmx" Method="UserAccounts" /> </telerik:RadAutoCompleteBox> <asp:LinkButton ID="lnkView" runat="server" Text="ViewUser"></asp:LinkButton> </td> </tr> </table><div class="CenterDiv"> <telerik:RadAutoCompleteBox ID="radAutoComplete" runat="server" OnClientRequesting="requesting" EmptyMessage="Enter Users Last Name First Name." InputType="Text" TextSettings-SelectionMode="Single"> <WebServiceSettings path="../AutoComplete.asmx" Method="UserAccounts" /> </telerik:RadAutoCompleteBox> <asp:LinkButton ID="lnkView" runat="server" Text="ViewUser"></asp:LinkButton> </div>