News:

We have *Free* SMF 2.0 & 2.1 Themes for Download and Support!

Main Menu

Recent Topics

Members
Stats
  • Total Posts: 10,749
  • Total Topics: 1,374
  • Online today: 484
  • Online ever: 879
  • (Jan 21, 20, 05:49:15 PM)
Users Online
Users: 0
Guests: 89
Total: 89

Maclike

Started by Dismal Shadow, Aug 07, 10, 03:26:21 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Dismal Shadow

I have 2 questions:


I am getting some (?) on treelinks. I am using english.I clear the cache. Any idea how to fix?


How can I change the logo? I can't find logo.png.

Using SMF 2.0 RC3





[attachment deleted by admin]

Crip

#1
look near bottom css/index.css

#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;
}


the characters come from install? .. makes white-space ?

To fix Go like : [index.template.php] Find Replace with:

Quote
// 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 ' &raquo;';

      echo '
         </li>';
   }
   echo '
      </ul>
   </div>';

   $shown_linktree = true;
}
..
I have become comfortably numb!


No PM's for Support unless invited! 

I remember my mother's prayers and they have always followed me.
   - Abraham Lincoln -
TOTM Winner.

Dismal Shadow

Oh-duh! The logo is in /img/logo.png  Thank you. Do you have psd for that logo? Because I want to change the wording and keep the apple. :P

And the treelink you provided work. Cheers. :)

Crip

located with /index.template.php
theme_info_xml /  images  /  css
I have become comfortably numb!


No PM's for Support unless invited! 

I remember my mother's prayers and they have always followed me.
   - Abraham Lincoln -
TOTM Winner.

Dismal Shadow

 ??? That's not what I mean, I mean the psd file to change "Mac like" to "The iApple Cafe".

Crip

#5
open the theme .. you can clearly see logo .psd

[attachment deleted by admin]
I have become comfortably numb!


No PM's for Support unless invited! 

I remember my mother's prayers and they have always followed me.
   - Abraham Lincoln -
TOTM Winner.

Dismal Shadow

Quote from: Crip on Aug 07, 10, 05:30:58 PM
open the theme .. you can clearly see logo .psd
Duh! I am blind.  ^-^

Got another little bugs maybe? Images attached. :)

[attachment deleted by admin]

Crip

#7
Apple image<< is that white-space again  ?

Drop menu , maybe clear cache and hard Refresh Command + R ..? never saw that before?

... or in the [index.template.php] find:

Quote
<a href="', $scripturl, '"><span id="logo">&nbsp;</span></a>
I have become comfortably numb!


No PM's for Support unless invited! 

I remember my mother's prayers and they have always followed me.
   - Abraham Lincoln -
TOTM Winner.

Dismal Shadow

Yes white-space again so it's like this?
<a href="'.$scripturl.'" title=""><span id="logo">�</span></a>';

to:
<a href="', $scripturl, '"><span id="logo">&nbsp;</span>[/url]
??? The code looks wrong...

the dropdown menu, I did clear the cache from forum maintenance and refresh the browser. Still same.  :(



Crip

I will have a look see at that..
.. drop menu could be the: text-shadow i used in the css/index.css
I have become comfortably numb!


No PM's for Support unless invited! 

I remember my mother's prayers and they have always followed me.
   - Abraham Lincoln -
TOTM Winner.