https://i.sstatic.net/0qVgh.png
This image illustrates my issue. I am attempting to align both the copyright text and my Font Awesome icons vertically.
Below is my HTML code:
<footer>
<p>Copyright © 2016 Sample SIte</p>
<div id="social">
<a class="social_buttons" href="www.linkedin.com"><i class="fa fa-linkedin"></i></a>
<a class="social_buttons" href="www.linkedin.com"><i class="fa fa-twitter"></i></a>
</div>
</footer>
And here is the CSS:
footer
{
max-width:960px;
background-color:#fbfbfb;
border-radius:10px;
margin:15px auto 10px auto;
padding: 18px 20px 18px 20px;
}
#social
{
float:right;
}
.social_buttons
{
color:#575757;
}
Thank you in advance for your help!