Hi @julietsully ,
In Saul theme, if you have added the custom logo then you can’t able to see the title and tagline.
Here according to your requirement, you have to modify in code and CSS. To change in code follow the below steps:
1) To change in the files you can connect with FTP, Cpanel or by
Administration > Appearance > Editor menu.
2) In Saul theme, there will be a functions.php file. Open the file.
3) Search for saul_logo_function().
4) There you will find only echo the_custom_logo(); code. Now we have to change it to below code:
echo the_custom_logo();
echo '<span class="sitedescription">'. esc_attr(get_bloginfo('description')) . '</span>';
5) Save the file and check in the front side.
Now you have to apply the CSS code as per your design.
Thanks