Skip to content

Commit

Permalink
Replace div inside the h1 with span - related to #2236
Browse files Browse the repository at this point in the history
  • Loading branch information
emanuele45 committed Dec 9, 2015
1 parent d8bc824 commit 8c140db
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions themes/default/css/index.css
Expand Up @@ -845,6 +845,7 @@ a.bbc_link {
#siteslogan {
clear: both;
font-size: 0.65em;
display: block;
}
/* Tweak the logo */
#logo {
Expand Down
6 changes: 3 additions & 3 deletions themes/default/index.template.php
Expand Up @@ -237,10 +237,10 @@ function template_body_above()
<a class="forumlink" href="', $scripturl, '">', $context['forum_name'], '</a>';

echo '
<div id="logobox">
<span id="logobox">
<img id="logo" src="', $context['header_logo_url_html_safe'], '" alt="', $context['forum_name_html_safe'], '" title="', $context['forum_name_html_safe'], '" />', empty($settings['site_slogan']) ? '' : '
<div id="siteslogan">' . $settings['site_slogan'] . '</div>', '
</div>
<span id="siteslogan">' . $settings['site_slogan'] . '</span>', '
</span>
</h1>';

// Show the menu here, according to the menu sub template.
Expand Down

0 comments on commit 8c140db

Please sign in to comment.