Hi
In below code DropDown is appearing in Normal Mode & on Left Side
<div class="card-header bg-transparent header-elements-inline" style="padding: 5px;"> <%--<h5 class="card-title"> <asp:Literal ID="ltrlSessionHead" runat="server" Text='Leads'></asp:Literal></h5>--%> <div class="d-flex justify-content-between align-items-center"> <div> <asp:DropDownList ID="ddlSelect" runat="server" class="form-select form-select-sm" AutoPostBack="true" OnSelectedIndexChanged="ddlSelect_SelectedIndexChanged"> <asp:ListItem Value="Today">Today</asp:ListItem> <asp:ListItem Value="Upcoming">Upcoming</asp:ListItem> </asp:DropDownList> </div> </div> </div>
Thanks