The copyright info comes as next menu item, but I want it to come on the next row inside the footer as a centered text so tell me please how I can achive this. Please help. thanks in advance.
/* ----- FOOTER ----- */
.footer-nav{
display: flex;
flex-direction: row;
justify-content: space-between;
list-style: none;
text-align: center;
text-transform: uppercase;
background-color: #333;
padding: 50px;
font-size: 80%;
}
.footer-nav li{
flex-grow: 100%;
}
<div class="wrapper">
<ul class="footer-nav">
<li><a href="#">About Us</a></li>
<li><a href="#">blah</a></li>
<li><a href="#"blah</a></li>
<li><a href="#">blah</a></li>
<p class = "copyright">aaa</p>
</ul>
</div>
` inside a `
` element.
– Alex - DJDB Apr 09 '17 at 16:43