Unable to put two elements side by side : PORTFOLIO

Hello all,
I’ve been working on my portfolio for a while and I’m having problem in putting two elements side by side. At the bottom of my page you can find contact form and right below that I just put some random text , I want that text beside my contact form. I tried “”" float:left “” but it didn’t work for me. Could someone help me with this issue.

Thanks !!!

PORTFOLIO

replace .col-sm-4 from your contact form with .col-sm-12
then just do it like you did in #portfolio

<div class="row">
  <div class="col-sm-6">
    <!-- contact form here -->
  </div>
  <div class="col-sm-6">
    <!-- gibberish -->
  </div>
</div>

from there adjust your form’s css

Thanks for your suggestion ! but it’s still not working :frowning:

https://codepen.io/pseudop/pen/xXGMyj

Awesome !! Thank you so much.