Skip to content Skip to sidebar Skip to footer

Logo And Text Next To It At The Bottom In Wordpress

I want to make a header where i have a logo and text next to it at the bottom but i want the text to appear at the bottom of the image . How would i achieve that? here is my image

Solution 1:

<div style="display:flex; flex-direction:column; align-items:center;">

<?php if (function_exists('the_custom_logo')) {the_custom_logo(); }?>

<title><?php wp_title(''); ?></title>

</div>

Post a Comment for "Logo And Text Next To It At The Bottom In Wordpress"