Making an about page I am trying to get 3 lines of text, titles to be on the same line as each other, right below a css circle with a background-image. Below that I have some text that needs to be under the respective nickname. I have no clue how to get the text to be equally spaced out and in the center. Margin seems to not be working. Let me know how to do this, if it is even possible. I have been looking for answers for hours now, both on this site and multiple others but have not found one. So I guess my question is: How can I get 3 lines of text on the same line and still be able to position them?`
Here is my code. Keep in mind I am using the skeleton responsive grid system.
#importantpeople {
text-align: center;
}
#manager-1 {
font-weight: 500;
text-align: left;
margin-left: -2px;
}
#manager-2 {
font-weight: 500;
text-align: center;
}
#manager-3 {
font-weight: 500;
text-align: right;
margin-right: 10px;
}
<div class="container">
<div class="row" id="importantpeople">
<h4 id="managers-head">Our Managers</h4>
<div class="one-third.column" id="screamer">
</div>
<div class="one-third.column" id="kinzu">
</div>
<div class="one-third.column" id="swezii">
</div>
<h5 id="manager-1">Screamer</h5>
<h5 id="manager-2">KINZU</h5>
<h5 id="manager-3">Swezii</h5>
<p>Just a guy chilling on his computer creating works of art for people</p>
<p>I am a guy who loves to get the things in my head onto paper. I have some great ideas that will blow your minds! Get ready!</p>
<p>I love Web, App and other designing. It is my goal to get rid of bad design in my city.</p>
</div>
</div>