News:

Wondering if this will always be free?  See why free is better.

Main Menu

.Extreme 6.

Started by Fussilet, October 08, 2008, 04:40:47 PM

Previous topic - Next topic

Fussilet


mrtrc266

#221
Quote from: Fussilet on February 21, 2009, 02:30:22 AM
download again pls

Thank you for your efforts but it still does the same thing. If you go here you can see it on the Calendar and Search.

http://www.monsters-mansion.com/testrc1/index.php?action=calendar

Thanks again.

Astra_200

Hi Fussilet

Thank you again for your great theme. But one small problem.

I decided to make a forum based site around your theme and have downloaded TinyPortal v1.0 beta 3.

The install was good with no errors, but now the menu buttons are static and do not expand on mouseover. (they still navigate ok just dont show text on mouseover i.e Home, Forum, Help, Login etc)

Can you help please?.

Fussilet

I have explored this topic for a few days

Killer-B

Just want to thank you for the GREAT theme!!!! :-)

The lines and clarity are some of the best work we've seen!

Thanks for doing this for the SMF community!!

www.f-1chat.com

I am still trying to sort how to insert my new "Donation" button.. (not a coder) but will figure it out! :-)

THANKS!!!!!!! GREAT WORK!!!!!
SMF 2.0RC1

Astra_200

Quote from: Fussilet on February 24, 2009, 02:44:59 AM
I have explored this topic for a few days

Sorry I dont understand, but I have removed TinyPortal and installed SimplePortal. Mouseover works fine now.

Keep up the good work, you have obviously spent a lot of time and effort on this theme.

khameleon

I'm very new to smf and forums alike. I'm trying to add google adsense to my theme but I'm not sure where to ad the code can anyone help me?

Fussilet

#227
open index.template.php

find :
                          theme_linktree();
}

function template_body_below()
{


add before pls
echo '<br /><center>
Adsanse  kode </center>';


Fussilet

for 2.0 Rc1

open indextemplate.php

find:

                          theme_linktree();
}

function template_body_below()


replace with:

                          theme_linktree2();
}

function template_body_below()


then find:
// Show a linktree. This is that thing that shows "My Community | General Category | General Discussion"..
function theme_linktree()
{
global $context, $settings, $options;

echo '<div class="nav" style="font-size: normal; margin-bottom: 2ex;">';

// Each tree item has a URL and name. Some may have extra_before and extra_after.
foreach ($context['linktree'] as $link_num => $tree)
{
// 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 '<b>', $settings['linktree_link'] && isset($tree['url']) ? '<a href="' . $tree['url'] . '" class="nav">' . $tree['name'] . '</a>' : $tree['name'], '</b>';

// 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 '&nbsp;|&nbsp;';
}

echo '</div>';
}


replace with:

// Show a linktree. This is that thing that shows "My Community | General Category | General Discussion"..
function theme_linktree()
{

}
// Show a linktree2. This is that thing that shows "My Community | General Category | General Discussion"..
function theme_linktree2()
{
global $context, $settings, $options;

echo '<div class="nav" style="font-size: normal; margin-bottom: 2ex;">';

// Each tree item has a URL and name. Some may have extra_before and extra_after.
foreach ($context['linktree'] as $link_num => $tree)
{
// 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 '<b>', $settings['linktree_link'] && isset($tree['url']) ? '<a href="' . $tree['url'] . '" class="nav">' . $tree['name'] . '</a>' : $tree['name'], '</b>';

// 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 '&nbsp;|&nbsp;';
}

echo '</div>';
}



For 1.1.x  versions

open index.template.php

find:
     <div id="ustsol">';
}

function template_main_below()


replace with:
     <div id="ustsol">';
                          theme_linktree2();
}

function template_main_below()


then find:
// Show a linktree. This is that thing that shows "My Community | General Category | General Discussion"..
function theme_linktree()
{
global $context, $settings, $options;

echo '<div class="nav" style="font-size: smaller; margin-bottom: 2ex; margin-top: 0ex; padding-bottom: 0ex; padding-left: 2ex;">';

// Each tree item has a URL and name. Some may have extra_before and extra_after.
foreach ($context['linktree'] as $link_num => $tree)
{
// 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 '<b>', $settings['linktree_link'] && isset($tree['url']) ? '<a href="' . $tree['url'] . '" class="nav">' . $tree['name'] . '</a>' : $tree['name'], '</b>';

// 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 '&nbsp;|&nbsp;';
}

echo '</div>';
}


replace with:
// Show a linktree. This is that thing that shows "My Community | General Category | General Discussion"..
function theme_linktree()
{

}
// Show a linktree. This is that thing that shows "My Community | General Category | General Discussion"..
function theme_linktree2()
{
global $context, $settings, $options;

echo '<div class="nav" style="font-size: smaller; margin-bottom: 2ex; margin-top: 0ex; padding-bottom: 0ex; padding-left: 2ex;">';

// Each tree item has a URL and name. Some may have extra_before and extra_after.
foreach ($context['linktree'] as $link_num => $tree)
{
// 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 '<b>', $settings['linktree_link'] && isset($tree['url']) ? '<a href="' . $tree['url'] . '" class="nav">' . $tree['name'] . '</a>' : $tree['name'], '</b>';

// 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 '&nbsp;|&nbsp;';
}

echo '</div>';
}


Fussilet


neilwiz06

Am useing the theme extreme6 and looking at adding a link in the top bar with home,login,seach ect are.

I edited the  index template. (the main template) but can't get it working

here what i have


/ Show the menu up top.  Something like [home] [seedbox login] [pm] [logout] [login] ...
function template_menu()
{
        global $context, $settings, $options, $scripturl, $txt;


   echo '
   <div id="kwick">
   <ul class="kwicks">';

        // Show the [home] button.
                  echo '<li><a href="', $scripturl, '" class="kwick opt1">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/home.png" alt="' . $txt[103] . '" style="margin: 0px 0;" border="0" /><span>' : $txt[103]), '</span></a></li>';

        // Show the [seedbox login] button.
                  echo '<li><a href="', $scripturl, '?action=http://213.251.163.202" class="kwick opt2" >', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/seedbox.png" alt="' . $txt[119] . '" style="margin: 0px 0;" border="0" /><span>' : $txt[119]), '</span></a></li>';

        // How about the [search] button?
        if ($context['allow_search'])
                echo '<li><a href="', $scripturl, '?action=search" class="kwick opt3">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/search.png" alt="' . $txt[182] . '" style="margin: 0px 0;" border="0" /><span>' : $txt[182]), '</span></a></li>';

        // Is the user allowed to administrate at all? ([admin])
        if ($context['allow_admin']){
                echo '<li><a href="', $scripturl, '?action=admin" class="kwick opt4">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/admin.png" alt="' . $txt[2] . '" style="margin: 0px 0;" border="0" /><span>' : $txt[2]), '</span></a></li>';
         }
        // Edit Profile [profile] :x
        if ($context['allow_edit_profile'])
                echo '<li><a href="', $scripturl, '?action=profile" class="kwick opt5">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/profile.png" alt="' . $txt[79] . '" style="margin: 0px 0;" border="0" /><span>' : $txt[467]), '</span></a></li>';

        // The Private Message [PM]!
        if ($context['allow_pm'])
                echo '<li><a href="', $scripturl, '?action=pm" class="kwick opt6">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/pm.png" alt="' . $txt[144] . '" style="margin: 0px 0;" border="0" /><span>' : $txt['smf199']), '</span></a></li>';

        // The [calendar]!
        if ($context['allow_calendar'])
                echo '<li><a href="', $scripturl, '?action=calendar" class="kwick opt7">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/calendar.png" alt="' . $txt['calendar24'] . '" style="margin: 0px 0;" border="0" /><span>' : $txt['calendar24']), '</span></a></li>';
       
        // The [member] list button :)
        if ($context['allow_memberlist'])
                echo '<li><a href="', $scripturl, '?action=mlist" class="kwick opt8">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/members.png" alt="' . $txt[331] .'" style="margin: 0px 0;" border="0" /><span>' : $txt[331]), '</span></a></li>';
             
        // If the user is a guest, show [login] button.
        if ($context['user']['is_guest'])       
                echo '<li><a href="', $scripturl, '?action=login" class="kwick opt9">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/login.png" alt="' . $txt[34] . '" style="margin: 0px 0;" border="0" /><span>' : $txt[34]), '</span></a></li>';

        // If the user is a guest, show [register] button.
        if ($context['user']['is_guest'])   
                echo '<li><a href="', $scripturl, '?action=register" class="kwick opt10">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/register.png" alt="' . $txt[97] . '" style="margin: 0px 0;" border="0" /><span>' : $txt[97]), '</span></a></li>';
       
        // Otherwise, they might want to [logout]...
        if ($context['user']['is_logged'])
                  echo '<li><a href="', $scripturl, '?action=logout;sesc=', $context['session_id'], '" class="kwick opt11">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/logout.png" alt="' . $txt[108] . '" style="margin: 0px 0;" border="0" /><span>' : $txt[108]), '</span></a></li>';
           

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

}

Fussilet

it must be

<a href="http://213.251.163.202/" target="_blank"  class="kwick opt2">

Astra_200

#234
Hi Fussilet.

Would it be possible to have a different colour background for every reply? Just like this page.

Perhaps just one shade darker?

SMF 2.0 RC1

Many thanks.

EDIT: Its ok sorted now.

Open style.css and find

/* Alternating backgrounds for posts, and several other sections of the forum. */
.windowbg, #preview_body, #windowbg
{
   background: #1a1a1a;
   color: #FFFFD2;
   font: 11px;
   font-family: tahoma;
   border: solid 1px #252525;
}
.windowbg2
{
   background: #0A0A0A;
   color: #707070;
   font: 11px;
   font-family: tahoma;
   border: solid 1px #252525;

Play around with Red to change background colour of second reply window. This will alternate through topic.
Play around with Blue to change text colour in second reply window. This will alternate through topic.

Hope this helps someone.

Smitten

#235
Hi Fussilet!
First, i want to congratulate you for this excellent theme.

My question is, how can i put the panel (mootools) on the top? i want to put the header under the panel.

Thanks bro!

Warheart

hi Fussilet, i am using this theme and is great, i see it and i love it.

And i will ask some to you, i am trying to use some thing like Today Birthday (http://custom.simplemachines.org/mods/index.php?mod=1047) the problem is that dident work at first try, and before cheking Board.index.template i see that Extreme include something like that, right?

Any way, if this is this way, how i need change Language and others files?

BTW i use spanish language, you dont have a traslate for extreme right?

Thx in advance and keep with the good work

a3des

Excellent theme, great work!

I have parsed the topic and haven't found anyone complaining that username is not displayed in top right area. I have try to mix the default index.template with extreme index.template in this sense, but what came up was a big mess. Eventually avatar would be nice to be displayed also.

.HuNTeR.

#238
hi Fussilet
I'm using a rtl language on my forum and have problem with menu
i can align right the menu but i can't change menu bar items moving direction
any help on how to solve this?

MaxShadow

I work well in English but in Spanish I do not post pictures of the main buttons, and k is the menu_psd...


Advertisement: