I'm facing some issues with my 4-column layout. The first column isn't aligning properly and is centered along with the other 3 columns. Also, I would like the columns to start higher up on the page.
Another problem is that these columns extend beyond the canvas on both sides. I want them to have margins on the left and right of the canvas. Can anyone assist me in resolving these issues? Thank you in advance!
Check out the site here:
Here's the desired look: https://drive.google.com/file/d/1V3lFJk0NVuJ8yC_-s-yqs0HlZZSJwKYD/view?usp=sharing
<div class="row">
<div class="col-3">
<div class="card" id="filter">
<header class="card-header">
<h6 class="title">Filter</h6>
</header>
<div class="card-body">
<h5>Categories</h5>
<div class="form-group">
<select class="form-control" id="exampleFormControlSelect1">
<option hidden="">Select a category</option>
<option>Administration</option>
<option>Charity & Voluntary</option>
<option>Construction</option>
<option>Education</option>
<option>Finance</option>
<option>Health</option>
<option>IT & Telecoms</option>
<option>Media, Digital & Creative</option>
<option>Retail</option>
<option>Security & Safety</option>
<option>Training</option>
<option>Other</option>
</select>
</div><br>
<h5>Location</h5>
<div class="form-group">
<input class="form-control" type="text">
</div><br>
<h5>Distance</h5>
<div class="slidecontainer">
<input type="range" min="1" max="100" value="50" class="slider" id="myRange">
<p><span id="demo">50</span> kms</p>
</div><br>
<h5>Budget</h5>
<div class="form-group">
<input type="text" id="name" name="name" requiredminlength="4" maxlength="8" size="5">
<p>to</p>
<input type="text" id="name" name="name" requiredminlength="4" maxlength="8" size="5">
</div><br>
<h5>Date</h5>
<div class="form-group">
<select class="form-control" id="exampleFormControlSelect1">
<option hidden="">Select a date</option>
<option>Last 24hrs</option>
<option>Last week</option>
<option>Last month</option>
<option>Last 3 months</option>
<option>Last 6 months</option>
<option>Last year</option>
<option>Forever</option>
</select>
</div>
</div>
</div> <!-- card-body.// -->
</div> <!-- card.// -->
<div class="col-9"> <!---New post--->
<div class="card-columns" id="cards">
<!-- Card content goes here -->
</div>
</div> <!---New post end--->
</div>