News: We have *Free 2.0.2* Themes.. for Download & Support.
Welcome, Guest.
Please login or register.
Loading...
  • Home
  • Forum
  • Search
  • Calendar
  • Downloads
  • Login
  • Register
  • Cripzone
  • Forum
  • Theme Support
  • Theme Support
  • Maclike
* * *

Get FireFox!

Best Viewed With FireFox!

User

Welcome, Guest. Please login or register.
May 21, 12, 04:21:53 AM

Login with username, password and session length

CZ Friends

  •      TPsupport
  •      build&Tell
  •      tentDwellers
  •      BlocweB

“Random Quotes”

PROV 3:12 For whom the LORD loveth he correcteth; even as a father the son in whom he delighteth.
« previous next »
  • Reply
  • Send this topic
  • Print
Pages: 1 2 [All]   Go Down

Author Topic: Maclike  (Read 3356 times)

0 Members and 1 Guest are viewing this topic.

Dismal Shadow

  • Guest
Maclike
« on: Aug 07, 10, 03:26:21 PM »
  • Quote
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]
Report to moderator   Logged

Offline Crip

  • Administrator/Owner
  • Hero Member
  • *
  • Posts: 5,770
  • Gender: Male
  • Say it ant true?
    • Cripzone
Re: Maclike
« Reply #1 on: Aug 07, 10, 04:31:21 PM »
  • Quote
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;
}
..
Report to moderator   Logged
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 -


Donate A Bible! | Quad Link | TOTM Winner.

Dismal Shadow

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

Offline Crip

  • Administrator/Owner
  • Hero Member
  • *
  • Posts: 5,770
  • Gender: Male
  • Say it ant true?
    • Cripzone
Re: Maclike
« Reply #3 on: Aug 07, 10, 05:24:42 PM »
  • Quote
located with /index.template.php
theme_info_xml /  images  /  css
Report to moderator   Logged
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 -


Donate A Bible! | Quad Link | TOTM Winner.

Dismal Shadow

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

Offline Crip

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

[attachment deleted by admin]
Report to moderator   Logged
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 -


Donate A Bible! | Quad Link | TOTM Winner.

Dismal Shadow

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

Offline Crip

  • Administrator/Owner
  • Hero Member
  • *
  • Posts: 5,770
  • Gender: Male
  • Say it ant true?
    • Cripzone
Re: Maclike
« Reply #7 on: Aug 07, 10, 05:43:09 PM »
  • Quote
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]
Report to moderator   Logged
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 -


Donate A Bible! | Quad Link | TOTM Winner.

Dismal Shadow

  • Guest
Re: Maclike
« Reply #8 on: Aug 07, 10, 06:28:20 PM »
  • Quote
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.  :(


Report to moderator   Logged

Offline Crip

  • Administrator/Owner
  • Hero Member
  • *
  • Posts: 5,770
  • Gender: Male
  • Say it ant true?
    • Cripzone
Re: Maclike
« Reply #9 on: Aug 31, 10, 07:46:49 PM »
  • Quote
I will have a look see at that..
.. drop menu could be the:  text-shadow i used in the css/index.css
Report to moderator   Logged
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 -


Donate A Bible! | Quad Link | TOTM Winner.

iShadow

  • Guest
Re: Maclike
« Reply #10 on: Sep 10, 10, 05:15:49 PM »
  • Quote
Hi Crip, this is a great theme.

a simpe question, did you fix dropdown menu?  O0
Report to moderator   Logged

Offline Crip

  • Administrator/Owner
  • Hero Member
  • *
  • Posts: 5,770
  • Gender: Male
  • Say it ant true?
    • Cripzone
Re: Maclike
« Reply #11 on: Sep 10, 10, 05:38:09 PM »
  • Quote
Well  no, AFAIK it's working as it should .. exactly what is you problem with the menu_drop??
Report to moderator   Logged
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 -


Donate A Bible! | Quad Link | TOTM Winner.

Offline ZarPrime

  • Site Admin
  • Hero Member
  • *
  • Posts: 950
  • Gender: Male
  • ~~~ Knowledge is Power
Re: Maclike
« Reply #12 on: Sep 11, 10, 12:27:02 AM »
  • Quote
Dismal Shadow and iShadow (Are you the same person? :o),

Give us a day or 2 to look at the dropdown issue.  I'm talking to Crip about it.

ZarPrime
Report to moderator   Logged

Offline Crip

  • Administrator/Owner
  • Hero Member
  • *
  • Posts: 5,770
  • Gender: Male
  • Say it ant true?
    • Cripzone
Re: Maclike
« Reply #13 on: Sep 12, 10, 07:18:47 PM »
  • Quote
iShadow , me and ZarPrime tested this menu code on his Forum and here , and it seems this code below is what's needed::
Code: [Select]

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

Please post if or if not it fixes yours and if so , I will update the Theme download for it.
Crip~
Report to moderator   Logged
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 -


Donate A Bible! | Quad Link | TOTM Winner.

  • Reply
  • Send this topic
  • Print
Pages: 1 2 [All]   Go Up
« previous next »
  • Cripzone
  • Forum
  • Theme Support
  • Theme Support
  • Maclike
 

Translate Cripzone

Recent

  • Theme that takes advantag... by Maxx
    [May 16, 12, 06:48:40 PM]
  • Style400 - smf logo click... by Crip
    [May 13, 12, 02:25:42 PM]
  • FireFox=12.0 by Maxx
    [May 12, 12, 09:22:05 AM]
  • Styx! by Crip
    [May 08, 12, 01:47:47 PM]
  • CZ-Casual]theme by Crip
    [May 07, 12, 01:19:32 PM]
  • Starship - We Built This ... by Allan
    [May 07, 12, 12:18:31 PM]
  • Bon Scott Era! by Crip
    [May 07, 12, 08:05:20 AM]
  • SMF 2.0.2 | SMF © 2011, Simple Machines
    TinyPortal © 2005-2012
  • XHTML
  • RSS
  • WAP
  • iMOTE
  • WAP2
Style308 by, Crip