I want to create a simple footer. I need the copyright text at the center and two links at the right side (all three elements should be horizontally positioned)
So far they position above each other.
How can I fix this?
#myFooter .footer-copyright {
background-color: #333333;
padding-top: 3px;
padding-bottom: 3px;
position: fixed;
left: 0;
bottom: 0;
width: 100%;
text-align: center;
}
#myFooter .row {
margin-bottom: 60px;
}
#myFooter .navbar-brand {
margin-top: 45px;
height: 65px;
}
#myFooter .footer-copyright p {
margin: 10px;
color: #ccc;
}
#myFooter ul {
list-style-type: none;
}
<footer id="myFooter">
<div class="footer-copyright">
<ul>
<li><a href="#">First</a></li>
<li><a href="#">Second</a></li>
</ul>
<p>copyright goes here...</p>
</div>
</footer>