0 Members and 1 Guest are viewing this topic.
#logo { position: absolute; top: 20px; left: 3em; display: block; width: 197px; <=image width=> height: 44px; <=image height=> background: url(../images/img/logo.png) no-repeat; <=image path=> cursor: pointer;}
// Show a linktree. This is that thing that shows "My Community | General Category | General Discussion"..function theme_linktree($force_show = false){ global $context, $settings, $options, $shown_linktree; // If linktree is empty, just return - also allow an override. if (empty($context['linktree']) || (!empty($context['dont_default_linktree']) && !$force_show)) return; echo ' <div class="navigate_section"> <ul>'; // Each tree item has a URL and name. Some may have extra_before and extra_after. foreach ($context['linktree'] as $link_num => $tree) { echo ' <li', ($link_num == count($context['linktree']) - 1) ? ' class="last"' : '', '>'; // Show something before the link? if (isset($tree['extra_before'])) echo $tree['extra_before']; // Show the link, including a URL if it should have one. echo $settings['linktree_link'] && isset($tree['url']) ? ' <a href="' . $tree['url'] . '"><span>' . $tree['name'] . '</span>' : '<span>' . $tree['name'] . '</span>'; // Show something after the link...? if (isset($tree['extra_after'])) echo $tree['extra_after']; // Don't show a separator for the last one. if ($link_num != count($context['linktree']) - 1) echo ' »'; echo ' </li>'; } echo ' </ul> </div>'; $shown_linktree = true;}
open the theme .. you can clearly see logo .psd
<a href="', $scripturl, '"><span id="logo"> </span>[/url]
<a href="'.$scripturl.'" title=""><span id="logo">�</span></a>';