Hi guys,
I know this might be a newb question but I am just getting stuck... Might be the 20 cups of coffee or the fact I havn't slept in 2 to 3 days...
Anyway, currently smithcart's search module is still built in tables. I need to force the tables into inline. I can't change the table to div's because of the original module coding. Currently this is how the code looks
<%--Multi Row Search Layout--%>
<asp:Panel ID="pnlMultiRowLayout" runat="server">
<table cellpadding="5">
<tr runat="server" id="trDD1" align="left" style="height: 25px" visible="false">
<td><asp:Label runat="server" ID="lblDD1Label" /></td>
<td>
<asp:DropDownList ID="ddlDD1" runat="server" Width="240px">
<asp:ListItem resourcekey="SelectDD1" Value="0"></asp:ListItem>
</asp:DropDownList>
</td>
</tr>
<tr runat="server" id="trDD2" align="left" style="height: 25px" visible="false">
<td><asp:Label runat="server" ID="lblDD2Label" /></td>
<td>
<asp:DropDownList ID="ddlDD2" runat="server">
<asp:ListItem resourcekey="SelectDD2" Value="0"></asp:ListItem>
</asp:DropDownList>
</td>
</tr>
<tr runat="server" id="trCategory" align="left" style="height: 25px" visible="false">
<td><asp:Label runat="server" ID="lblCatLabel" /></td>
<td>
<asp:DropDownList ID="ddlCategory" runat="server" AppendDataBoundItems="true" >
<asp:ListItem resourcekey="SelectCategory" Value="0"></asp:ListItem>
</asp:DropDownList>
</td>
</tr>
<tr runat="server" id="trTextBox" align="left" style="height: 25px" visible="false">
<td><asp:Label runat="server" ID="lblTBLabel" /></td>
<td><asp:TextBox ID="txtSearchTB" runat="server"/></td>
</tr>
<tr runat="server" id="trSort" align="left" style="height: 25px" visible="false">
<td><asp:Label runat="server" ID="lblSortLabel" /></td>
<td>
<asp:DropDownList ID="ddlSort" runat="server">
<asp:ListItem resourcekey="SelectSort" Value="0"></asp:ListItem>
</asp:DropDownList>
</td>
</tr>
<tr><td></td></tr>
</table>
<div>
<scui:SmithButton ID="IbSearch" runat="server" onclick="IbSearch_Click" Text="SEARCH" resourcekey="IbSearch.Text" />
</div>
<br />
<div><asp:Label ID="lblMessage" runat="server" CssClass="dnnFormMessage dnnFormWarning" Visible="false"/></div>
<br />
</asp:Panel>
Is there any way to force this to be inline? I want to display above a large banner across the top of my website below the navigation bar in the top container.
Also I am running DNN 7.4 and everything is up to date.
Thanks
Scott