News: We have *Free 2.0 Gold* Themes for Download & Support.
Welcome, Guest.
Please login or register.
Loading...
  • Home
  • Forum
  • Help
    • TinyPortal
  • Calendar
  • Downloads
  • Login
  • Register
  • Cripzone »
  • Forum »
  • Theme Support »
  • Theme Support (Moderator: Crip) »
  • Maclike
* * *

User

Welcome, Guest. Please login or register.
Feb 03, 12, 10:50:33 PM

Login with username, password and session length

CZ Friends

  •      TPsupport
  •      blocWeb
  •      build&Tell
  •      tentDwellers
  •      aRgStudio

“Random Proverb”

PROV 1:10 My son, if sinners entice thee, consent thou not.
« previous next »
  • Print
Pages: [1] 2  All   Go Down

Author Topic: Maclike  (Read 3157 times)

0 Members and 1 Guest are viewing this topic.

Dismal Shadow

  • Guest
Maclike
« on: Aug 07, 10, 03:26:21 PM »
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



Logged

Offline Crip

  • Administrator/Owner
  • Hero Member
  • *****
  • Posts: 5,390
  • Gender: Male
  • Say it ant true?
    • Cripzone
Re: Maclike
« Reply #1 on: Aug 07, 10, 04:31:21 PM »
look near bottom css/index.css
Code: [Select]
#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;
}
..
Logged
I have become comfortably numb!

Do Not PM me for Support unless invited!
I remember my mother's prayers and they have always followed me.
   - Abraham Lincoln -


Donate A Bible! | Quad Link | TOTM Winner.

Dismal Shadow

  • Guest
Re: Maclike
« Reply #2 on: Aug 07, 10, 04:43:09 PM »
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. :)
Logged

Offline Crip

  • Administrator/Owner
  • Hero Member
  • *****
  • Posts: 5,390
  • Gender: Male
  • Say it ant true?
    • Cripzone
Re: Maclike
« Reply #3 on: Aug 07, 10, 05:24:42 PM »
located with /index.template.php
theme_info_xml /  images  /  css
Logged
I have become comfortably numb!

Do Not PM me for Support unless invited!
I remember my mother's prayers and they have always followed me.
   - Abraham Lincoln -


Donate A Bible! | Quad Link | TOTM Winner.

Dismal Shadow

  • Guest
Re: Maclike
« Reply #4 on: Aug 07, 10, 05:28:38 PM »
 ??? That's not what I mean, I mean the psd file to change "Mac like" to "The iApple Cafe".
Logged

Offline Crip

  • Administrator/Owner
  • Hero Member
  • *****
  • Posts: 5,390
  • Gender: Male
  • Say it ant true?
    • Cripzone
Re: Maclike
« Reply #5 on: Aug 07, 10, 05:30:58 PM »
open the theme .. you can clearly see logo .psd
Logged
I have become comfortably numb!

Do Not PM me for Support unless invited!
I remember my mother's prayers and they have always followed me.
   - Abraham Lincoln -


Donate A Bible! | Quad Link | TOTM Winner.

Dismal Shadow

  • Guest
Re: Maclike
« Reply #6 on: Aug 07, 10, 05:37:11 PM »
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. :)
Logged

Offline Crip

  • Administrator/Owner
  • Hero Member
  • *****
  • Posts: 5,390
  • Gender: Male
  • Say it ant true?
    • Cripzone
Re: Maclike
« Reply #7 on: Aug 07, 10, 05:43:09 PM »
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>[/url]
Logged
I have become comfortably numb!

Do Not PM me for Support unless invited!
I remember my mother's prayers and they have always followed me.
   - Abraham Lincoln -


Donate A Bible! | Quad Link | TOTM Winner.

Dismal Shadow

  • Guest
Re: Maclike
« Reply #8 on: Aug 07, 10, 06:28:20 PM »
Yes white-space again so it's like this?
Code: [Select]
<a href="'.$scripturl.'" title=""><span id="logo">�</span></a>';
to:
Code: [Select]
<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.  :(


Logged

Offline Crip

  • Administrator/Owner
  • Hero Member
  • *****
  • Posts: 5,390
  • Gender: Male
  • Say it ant true?
    • Cripzone
Re: Maclike
« Reply #9 on: Aug 31, 10, 07:46:49 PM »
I will have a look see at that..
.. drop menu could be the:  text-shadow i used in the css/index.css
Logged
I have become comfortably numb!

Do Not PM me for Support unless invited!
I remember my mother's prayers and they have always followed me.
   - Abraham Lincoln -


Donate A Bible! | Quad Link | TOTM Winner.

  • Print
Pages: [1] 2  All   Go Up
« previous next »
  • Cripzone »
  • Forum »
  • Theme Support »
  • Theme Support (Moderator: Crip) »
  • Maclike
 

Recent

  • Can I Sit Next To You Gir... by Crip
    [Feb 03, 12, 02:32:39 PM]
  • Rush! by Scrubmeister
    [Feb 03, 12, 09:13:13 AM]
  • Maxx - Happy Birthday! by Maxx
    [Feb 02, 12, 04:08:15 PM]
  • Quote by Crip
    [Feb 02, 12, 09:59:25 AM]
  • Fine Tuning BR Finale by TLone
    [Feb 01, 12, 08:09:41 PM]
  • Modified CoalBlack? by Lyfing
    [Jan 24, 12, 02:31:55 PM]
  • Tom Petty! by Crip
    [Jan 22, 12, 12:26:45 PM]
  • The Doors! by Crip
    [Jan 21, 12, 11:58:01 AM]
  • Theme Edit Basics finding... by Maxx
    [Jan 20, 12, 07:58:24 AM]
  • Old Man! by Maxx
    [Jan 19, 12, 05:14:50 PM]

Stats

Members
  • Total Members: 516
  • Latest: streic
Stats
  • Total Posts: 5302
  • Total Topics: 844
  • Online Today: 21
  • Online Ever: 146
  • (Feb 15, 11, 07:14:16 PM)
Users Online
Users: 1
Guests: 15
Total: 16
Maxx
  • SMF 2.0.2 | SMF © 2011, Simple Machines
    TinyPortal © 2005-2011
  • XHTML
  • RSS
  • WAP2
Style308 by, Crip