Hello guys,
So…I’m trying to make a header using bootstrap grid system(collumns and rows).I’m a beginner with html and css,so if you have any suggestion,just tell me!
First problem:
I have the navbar in a col-lg-4 and i’m trying to center it,but it’s not working.HTML:
<div class="row header_details">
<div class="col-lg-1 col-1 logo">
<a href="#"><img class="img-fluid" id="logo-img" src="http://www.designyourway.net/blog/wp-content/uploads/2017/10/kitchen_table_seal_logo.jpg"/></a>
</div>
<div class="col-lg-4 offset-lg-1 col-4 menu">
<div class="bottom-menu">
<nav>
<ul>
<li><a href="#">Acasa</a></li>
<li><a href="#">Meniu</a></li>
<li><a href="#">Poze</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</div>
</div>
</div>
Problem number 2: After that,i want to have 4 icons at the bottom of the row,so i’ve made another row(in the main row),i’ve made the collumns,but i can’t place them at the bottom of the row.HTML:
<div class="col-lg-4 offset-lg-2 col-4 order-details">
<div class="row">
<div class="col-lg-3 detail-item">
icon 1
</div>
<div class="col-lg-3 detail-item">
icon 2
</div>
<div class="col-lg-3 detail-item">
icon 3
</div>
<div class="col-lg-3 detail-item">
icon 4
</div>
</div>
</div>
MENTION:The second html is in the same row as the first html.