Simple Machines Community Forum

Customizing SMF => Graphics and Templates => Theme Site Themes => Topic started by: Hoochie Coochie Man on June 04, 2008, 04:03:40 PM

Title: Creeper
Post by: Hoochie Coochie Man on June 04, 2008, 04:03:40 PM


CREEPER
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fcustom.simplemachines.org%2Fthemes%2Findex.php%2Faction%2Cdownload%2Flemma%2C722%2Fimage%2Cthumb&hash=048d8568cd76a3410536a5de75aea2e61e145a14)

By Hoochie Coochie Man (http://custom.simplemachines.org/themes/index.php?action=profile;u=118828)


Link to Theme (http://custom.simplemachines.org/themes/index.php?lemma=722) | Support Topic (http://www.simplemachines.org/community/index.php?topic=242902.0)


Compatibility
Only with SMF 1.1.5

Description
Creeper theme has a slide control panel.

Live Demo
Click (http://smfthemes.890m.com/forum/index.php?theme=15)

Installation
Useful Link
Installing themes (http://www.simplemachines.org/community/index.php?topic=11481.0)

Support
Please use the theme thread for support with this theme.
(Please don't ask me to do the edits for you)
Title: Re: Creeper
Post by: Apllicmz on June 06, 2008, 03:35:58 PM
good work
nice themes
Title: Re: Creeper
Post by: sandramichelle on August 11, 2008, 07:21:28 PM
We LOVE this theme!

However, I am probably going to have a couple of questions, as I am a novice when it comes to setting these up.

Here is the site where we have loaded the theme:

http://inklust.net/forum/

The title bar for "general category" has remained blue when you view the forum using mozilla firefox.  Can you help me figure out, please, why this might be and what I need to fix in order for it to match?

Thank you so much in advance!

Sandy
Title: Re: Creeper
Post by: BuЯЯЯЯaK on August 11, 2008, 07:31:10 PM
Style.css

Code (FIND) Select

.catbg a:hover, .catbg2 a:hover, .catbg3 a:hover
{
color: #e0e0ff;
}


Code (REPLACE) Select

.catbg a:hover, .catbg2 a:hover, .catbg3 a:hover
{
color: #efefef;
}

Title: Re: Creeper
Post by: sandramichelle on August 11, 2008, 07:33:00 PM
Thanks so much!  all fixed!!

I appreciate your help!
Title: Re: Creeper
Post by: BuЯЯЯЯaK on August 11, 2008, 07:33:55 PM
You're welcome bro :)
Title: Re: Creeper
Post by: nikosuk on October 28, 2008, 11:25:04 AM
hello, congratulations on your theme. :)
very nice indeed ! i use it on my forums,

only one question

i am installing some mods, and i would like to show them on the TOP menu , along with the Home,members buttons etc.

to be more specific,
i installed the ajax chat, which is called from   /chat/index.php
i cannot make it show properly though,
could you please tell me the code if i need a button to show named ChatRoom and pointing to the  /chat/index.php

Thank you very much for your help!
Title: Re: Creeper
Post by: Hoochie Coochie Man on October 28, 2008, 03:21:16 PM
@nikosuk

If you talking about this modification (http://custom.simplemachines.org/mods/index.php?mod=1319), please open index.template.php

Code (find) Select
// the [member] list button
Code (add before) Select
// the [chat] button
$path = str_replace("index.php", "chat/index.php", $scripturl);
echo '<li><a href="', $path, '" target="_blank">', $txt['chat'], '</a></li>';
Title: Re: Creeper
Post by: nikosuk on October 28, 2008, 04:49:06 PM
First, thanks for your answer,

and yes i was talking about that.

look, i couldnt make  the button to work with your code,

// the [chat] button
   $path = str_replace("index.php", "chat/index.php", $scripturl);
   echo '<li><a href="', $path, '" target="_blank">', $txt['chat'], '</a></li>';


but when i replaced  $txt['chat'] with $txt[103] it worked !!
Apparently $txt[103] is HOME button but is still gets me to the chat page. I tried $txt["chat"] but nothing again :(


Any help would be appreciated
Title: Re: Creeper
Post by: Hoochie Coochie Man on October 28, 2008, 04:55:54 PM
Code (find) Select
', $txt['chat'], '
Code (replace) Select
Chat
Title: Re: Creeper
Post by: nikosuk on October 28, 2008, 08:16:34 PM
well , that helped a lot, thank you for your time,
Again very nice theme... my members love it!
Title: Re: Creeper
Post by: Hoochie Coochie Man on October 29, 2008, 04:16:37 AM
You are welcome.