Hey, I'm having trouble figuring out how to position this image vertically in the middle of the div. The height of the header varies depending on whether you are logged in or logged out!
<div class="header">
<nav class="header-content columns" data-topbar role="navigation">
<div class="logo-area">
<?php echo logo_header(); ?>
</div>
<section class="header-content-section">
</section>
</nav>
</div>
I'm struggling with setting up the CSS to keep the image vertically centered. Here's what I have so far:
.header-content .logo-area {
} .header-content .logo-area img {
}
Any advice or suggestions would be greatly appreciated! Thank you.