The problem I’m having is the custom logo, site title, and description won’t appear at the same time. In image 1 below, you can see that with no custom logo, the site title, and description appears just fine.
<div id="hotwp-logo">
<div class="site-branding"> <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home" class="hotwp-logo-img-link"> <img src="<?php echo esc_url( hotwp_custom_logo() ); ?>" alt="" class="hotwp-logo-img"/> </a> </div>
<div class="site-branding"> <h1 class="hotwp-site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1> <p class="hotwp-site-description"><?php bloginfo( 'description' ); ?></p> </div>
When I don’t have a logo, the tag line and the description is shown.
Image 1
When I add a custom logo, the tag line and the description disappears.
Image 2
This was edited to show what I need. The tag line and the description need to show, shifting to the right of the logo.
Image 3