Link to home
Start Free TrialLog in
Avatar of zachvaldez
zachvaldezFlag for United States of America

asked on

Lining up title

I'm placing this on the top of the page but it won't line up horizontally.
 
 <div class="container">
        <div class="row"><h3>Application Name</h3>
            <div class="col-10-md"><h3>
                    <asp:TextBox ID="txtAppName" runat="server" CssClass="text-center" Width="220px"></asp:TextBox></h3>

            </div>
        </div>

Open in new window

Avatar of David S.
David S.
Flag of United States of America image

The first <h3> needs a class applied to it directly or via a <div> wrapper.

Is there a particular reason why you are using two <h3>s anyway? It looks like the first should be a <label> and the second is unnecessary.
Avatar of zachvaldez

ASKER

Will you please show the code for that? Thanks
ASKER CERTIFIED SOLUTION
Avatar of David S.
David S.
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial