Trying to align content within two divs side by side in a container. The goal is to have the first div or ul content on the left and the second on the right.
Attempted using text-left and text-right classes but no luck.
<div class="header_full_width">
<div class="container">
<div class="row">
<div class="col-md-6">
<ul class="header_links_ul">
<li class="float-left"><a href="#">Shopping Information</a></li>
<li class="float-left"><a href="#">Shipping</a></li>
<li class="float-left"><a href="#">Contact</a></li>
</ul>
</div>
<div class="col-md-6">
<ul class="header_links_ul">
<li class="float-left"><a href="#">Registration</a></li>
<li class="float-left"><a href="#">Login</a></li>
</ul>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
.header_full_width{ widows:100%; background:#fff; border-bottom:1px solid #ccc; }
.header_links_ul{ list-style:none; margin:0; padding:0;}
.header_links_ul li { display:block; }
.header_links_ul li a{ color:#000; font-size:12px; display:block;}
No errors encountered. Refer to the image attached for desired outcome.