Adding H1 tag UNDER my logo
-
Hello guys,
I’m just created a new site and I want to use my logo, but once I added my logo, my h1 is gone. My question is: how can I use both “logo” and “h1”, in case my logo display and my h1 is under my logo (invisible with visitors but it’s still there)
My site is: https://www.minhthanhonline.com/
a code with h1 and logo inside of my header.php is something like this:
” <div class=”logo”>
<?php if ($theme->get_option(‘themater_logo_source’) == ‘image’) { ?>
“><img src=”<?php $theme->option(‘logo’); ?>” alt=”<?php bloginfo(‘name’); ?>” title=”<?php bloginfo(‘name’); ?>” />
<?php } else { ?>
<?php if($theme->display(‘site_title’)) { ?>
<h1 class=”site_title”>“><?php $theme->option(‘site_title’); ?></h1>
<?php } ?><?php if($theme->display(‘site_description’)) { ?>
<h2 class=”site_description”><?php $theme->option(‘site_description’); ?></h2>
<?php } ?>
<?php } ?>
</div><!– .logo –>
“I’m using wp 4.2.2, seem like the latest one.
Please help me with that!
Thanks a lot!
JT
- The topic ‘Adding H1 tag UNDER my logo’ is closed to new replies.