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>';
#toolbar { height: 42px; background: url(../images/img/toolbar.png) 0 0 repeat-x;}#navtop { position: relative; height: 42px; z-index: 1000; padding: 0; margin: 0;}#navtop ul { margin: 0; padding: 0;}#navtop li { float: left; margin: 0; padding: 0 0 0 2px; position: relative; list-style: none;}#navtop li a { display: block; line-height: 44px; padding: 0 16px; color: #888; font-size: 12px;}#navtop li a.active { background: url(../images/img/active.png) 50% 0 repeat-x; color: #444; font-weight: bold;}#navtop li a:hover, #navtop li:hover a, #navtop li.sfhover a { background: url(../images/img/active.png) 50% 0 repeat-x; color: #444; text-decoration: none;}#navtop li:hover li a, #navtop li ul li a:hover { color: #444; background: #DCDCDC;}#navtop li li { width: 210px; height: auto; padding: 0;}#navtop li li a, #navtop li li a:hover, #navtop li li a, #navtop a.active li a, #navtop li:hover li a, #navtop li.sfhover li a { background: none; height: 30px; line-height: 30px; margin: 0; font-weight: normal; text-transform: none; font-size: 10px; color: #444;}#navtop li ul { background: #C5C5C5; position: absolute; width: 210px; left: -999em; margin-left: -1px;}#navtop li ul ul { margin: -27px 0 0 195px;}#navtop ul li li:hover, #navtop ul li li.hover { position: static;}#navtop li:hover ul ul, #navtop li:hover ul ul ul, #navtop li.sfhover ul ul, #navtop li.sfhover ul ul ul { left: -999em;}#navtop li:hover ul, #navtop li.sfhover ul { left: 3px;}#navtop li li:hover ul, #navtop li li li:hover ul, #navtop li li.sfhover ul, #navtop li li li.sfhover ul { left: 0;}