I am working on creating my Portfolio Website gw.mvctc.com/Class2018/smcintosh I recently converted it partly to bootstrap, and it looks ok, but as you can see, on the home page, there is a horizontal scroll to nothing, and the boxes are not the same height. I have figured out that the horiz. scroll is the same width as the vertical scroll bar, so I'm not sure if that is part of the issue, or not.
How can I fix the horizontal scroll issue and how do I make the boxes the same height?
At the moment i have this style code on my article, the object that has the box:
article {
padding: 10px;
border: #ff4100 solid 7.5px;
border-radius: 15px;
}
and this is the HTML for the article itself:
<div class="fluid-container">
<div class="row">
<section class="col-lg-4 col-md-6 col-sm-6">
<article>
<h2>Education Goals</h2>
<ul>
<li>At the moment my largest education goal is to graduate
from high school</li>
<li>I hope to have enough scholarships to be able to go to a
good college to further my education and gain more knowledge</li>
<li>I hope to graduate from a good college with a bachelor's
degree in some form of computer science</li>
</ul>
</article>
</section>
//More sections follow, hence the 2 other boxes
//...
</div>
</div>