I've been struggling to vertically center the config button (#config) and none of the options I've tried worked the way I wanted. Here is a link to my CodePen:
Here is the crucial part of the code that needs modification:
HTML
<header id="cabecera">
<img id="logo" alt="Mayor Igual a Siete" src="http://imgh.us/logo_207.svg">
<h3 id="user">Username</h3>
<a href="perfil.html"><img alt="Configuracion" src="http://imgh.us/config.svg" id="config"></a>
</header>
CSS
#config {
transition: all 0.5s ease;
height: 20px;
width: 20px;
}
Appreciate any help in advance! And if there are other issues you spot, please let me know!