Sonai,
you were so helpful last week, just wondering if you can help me sove a new problem:
I am trying to make a multi column layout but every time I try it blows out my page. please see:
https://addysmith.com/ao/test-2/
heres the css:
#responsive-form{
max-width:600px /*– change this to get your desired form width –*/;
margin:0 auto;
width:100%;
}
.form-row{
width: 100%;
}
.column-half, .column-full{
float: left;
position: relative;
padding: 0.65rem;
width:100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
.clearfix:after {
content: “”;
display: table;
clear: both;
}
heres html:
<div id=”responsive-form” class=”clearfix”>
<div class=”form-row”>
<div class=”column-half”>First Name [text* first-name]</div>
<div class=”column-half”>Last Name [text* last-name]</div>
</div>
<div class=”form-row”>
<div class=”column-half”>Email [email* your-email]</div>
<div class=”column-half”>Phone [text* your-phone]</div>
</div>
<div class=”form-row”>
<div class=”column-full”>Subject [text* your-subject]</div>
</div>
<div class=”form-row”>
<div class=”column-full”>Your message [textarea your-message]</div>
</div>
<div class=”form-row”>
<div class=”column-full”>[submit “Send”]</div>
</div>
</div><!–end responsive-form–>
thanks