.Extreme 6.

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

Previous topic - Next topic

jdvarner

#260
Finally got this awesome theme loaded on my site.

http://www.jdworld.net

i would like to put in the top thought "Jdworld.net" in black letters like comic sans or something what you think would be cool. check out the site and you'll see how awkard it looks. i need something up there please.

Can someone please tell me how to do that, and the code it would take to do that. I would greatly appreciate it.

Thank You. I love this theme. Just want to make up for the grey space on top now.

mrtrc266

How did you get that grey space in there anyway? By default it comes with a Xtreem6 logo, just creat your own logo and replace the logo file in yourforum/Themes/extreem6/images/logo.png

jdvarner

dont have a clue. :)

i think i was trying to get rid of the logo and ended up with the grey area.


mrtrc266

Looks better now.

Now just create your own logo and replace the logo.png file like I explained above and all will be well ;)

jdvarner

thanks. will have the wife check it out. she is into that logo stuff. :)

jdvarner

where is the logo file?

mrtrc266

Quote from: jdvarner on April 10, 2009, 12:25:58 AM
where is the logo file?

yourforum/Themes/extreem6/images/logo.png

Logue

Cool design! ;D
I've made Japanese image file.

Fussilet

Quote from: mrtrc266 on March 31, 2009, 12:40:28 PM
Hey Fussilet I hate to bother you with this again but I just upgraded to RC1 and the news fader is not working in IE again and the edit that you provided for 118 will not work, the code has totally changed.

I can't seem to find the css that would change the color behind my avatar on my profile.

For some reason I can't attatch the pic.

Any ideas?

Thanks in advance


2.0 Rc1  final version aviable!
I upgraded now.


Fussilet

Quote from: Logue on April 10, 2009, 08:33:39 PM
Cool design! ;D
I've made Japanese image file.


Thank you very much Logue ;)

mrtrc266

Quote from: Fussilet on April 10, 2009, 09:18:09 PM
Quote from: mrtrc266 on March 31, 2009, 12:40:28 PM
Hey Fussilet I hate to bother you with this again but I just upgraded to RC1 and the news fader is not working in IE again and the edit that you provided for 118 will not work, the code has totally changed.

I can't seem to find the css that would change the color behind my avatar on my profile.

For some reason I can't attatch the pic.

Any ideas?

Thanks in advance


2.0 Rc1  final version aviable!
I upgraded now.

Thank you very much Fussilet, I have already totally customized this theme to coincide with my forum and installed Mods. Instead of having to redo all the custom edits in the css, boardindex.template and index.template would I just be able to change the code that you did from the last version to the final release?

If so what are the code change that need to be done? If that's too much to post I understand.

Or alteast what would I need to change to get the News Fader to work in the last version.

Once again "Thank you very much." This theme is by far the best out there and I truly appreciate all you hard work.

Fussilet

ok...
open boardindex.template

find:
// Show the news fader?  (assuming there are things to show...)
if ($settings['show_newsfader'] && !empty($context['fader_news_lines']))
{
echo '
<script language="JavaScript" type="text/javascript"><!-- // --><![CDATA[
// Create the main header object.
var smfNewsFadeToggle = new smfToggle("smfNewsFadeScroller", ', empty($options['collapse_news_fader']) ? 'false' : 'true', ');
smfNewsFadeToggle.useCookie(', $context['user']['is_guest'] ? 1 : 0, ');
smfNewsFadeToggle.setOptions("collapse_news_fader", "', $context['session_id'], '");
smfNewsFadeToggle.addToggleImage("newsupshrink", "/collapse.gif", "/expand.gif");
smfNewsFadeToggle.addTogglePanel("smfNewsFader");
// ]]></script>
<div class="tborder marginbottom">
<h3 id="newsfader" class="catbg headerpadding">
<a href="#" onclick="smfNewsFadeToggle.toggle(); return false;">
<img id="newsupshrink" src="', $settings['images_url'], '/', empty($options['collapse_news_fader']) ? 'collapse.gif' : 'expand.gif', '" alt="*" title="', $txt['upshrink_description'], '" align="bottom" />
</a>&nbsp;', $txt['news'], '
</h3>
<div id="smfNewsFader"', empty($options['collapse_news_fader']) ? '' : ' style="display: none;"', '>
<div id="smfFadeScroller"><span>', $context['news_lines'][0], '</span></div>
</div>
</div>
<script language="JavaScript" type="text/javascript"><!-- // --><![CDATA[
// The fading delay (in ms.)
var smfFadeDelay = ', empty($settings['newsfader_time']) ? 5000 : $settings['newsfader_time'], ';
// Fade from... what text color? To which background color?
var smfFadeFrom = {"r": 0, "g": 0, "b": 0}, smfFadeTo = {"r": 255, "g": 255, "b": 255};
// Surround each item with... anything special?
var smfFadeBefore = "<b>", smfFadeAfter = "</b>";

var foreColor, foreEl, backEl, backColor;

if (typeof(document.getElementById(\'smfFadeScroller\').currentStyle) != "undefined")
{
foreColor = document.getElementById(\'smfFadeScroller\').currentStyle.color.match(/#([\da-f][\da-f])([\da-f][\da-f])([\da-f][\da-f])/);
smfFadeFrom = {"r": parseInt(foreColor[1]), "g": parseInt(foreColor[2]), "b": parseInt(foreColor[3])};

backEl = document.getElementById(\'smfFadeScroller\');
while (backEl.currentStyle.backgroundColor == "transparent" && typeof(backEl.parentNode) != "undefined")
backEl = backEl.parentNode;

backColor = backEl.currentStyle.backgroundColor.match(/#([\da-f][\da-f])([\da-f][\da-f])([\da-f][\da-f])/);
smfFadeTo = {"r": eval("0x" + backColor[1]), "g": eval("0x" + backColor[2]), "b": eval("0x" + backColor[3])};
}
else if (typeof(window.opera) == "undefined" && typeof(document.defaultView) != "undefined")
{

foreEl = document.getElementById(\'smfFadeScroller\');

while (document.defaultView.getComputedStyle(foreEl, null).getPropertyCSSValue("color") == null && typeof(foreEl.parentNode) != "undefined" && typeof(foreEl.parentNode.tagName) != "undefined")
foreEl = foreEl.parentNode;

foreColor = document.defaultView.getComputedStyle(foreEl, null).getPropertyValue("color").match(/rgb\((\d+), (\d+), (\d+)\)/);
smfFadeFrom = {"r": parseInt(foreColor[1]), "g": parseInt(foreColor[2]), "b": parseInt(foreColor[3])};

backEl = document.getElementById(\'smfFadeScroller\');

while (document.defaultView.getComputedStyle(backEl, null).getPropertyCSSValue("background-color") == null && typeof(backEl.parentNode) != "undefined" && typeof(backEl.parentNode.tagName) != "undefined")
backEl = backEl.parentNode;

backColor = document.defaultView.getComputedStyle(backEl, null).getPropertyValue("background-color");//.match(/rgb\((\d+), (\d+), (\d+)\)/);
smfFadeTo = {"r": parseInt(backColor[1]), "g": parseInt(backColor[2]), "b": parseInt(backColor[3])};
}

// List all the lines of the news for display.
var smfFadeContent = new Array(
"', implode('",
"', $context['fader_news_lines']), '"
);
// ]]></script>
<script language="JavaScript" type="text/javascript" src="', $settings['default_theme_url'], '/scripts/fader.js"></script>';
}


replace with:
// Show the news fader?  (assuming there are things to show...)
if ($settings['show_newsfader'] && !empty($context['fader_news_lines']))
{
echo '
<script language="JavaScript" type="text/javascript"><!-- // --><![CDATA[
// Create the main header object.
var smfNewsFadeToggle = new smfToggle("smfNewsFadeScroller", ', empty($options['collapse_news_fader']) ? 'false' : 'true', ');
smfNewsFadeToggle.useCookie(', $context['user']['is_guest'] ? 1 : 0, ');
smfNewsFadeToggle.setOptions("collapse_news_fader", "', $context['session_id'], '");
smfNewsFadeToggle.addToggleImage("newsupshrink", "/collapse.gif", "/expand.gif");
smfNewsFadeToggle.addTogglePanel("smfNewsFader");
// ]]></script>';
echo '
<div class="catbgf-l">
<div class="catbgf-r">
<div class="catbgf" style="padding-top: 5px; text-align: center; ">
<a href="#" onclick="smfNewsFadeToggle.toggle(); return false;">
                  <img id="newsupshrink" src="', $settings['images_url'], '/', empty($options['collapse_news_fader']) ? 'collapse.gif' : 'expand.gif', '" alt="*" title="', $txt['upshrink_description'], '" align="bottom" />
                        </a>&nbsp;', $txt['news'], '
</div>
</div>
</div>
<table border="0" width="100%" class="tborder" cellspacing="' , ($context['browser']['is_ie'] || $context['browser']['is_opera6']) ? '1' : '0' , '" cellpadding="4" style="margin-bottom: 2ex;">
<tr>
<td valign="middle" align="center" height="60" class="windowbg">
      <div id="smfNewsFader"', empty($options['collapse_news_fader']) ? '' : ' style="display: none;"', '>
<div id="smfFadeScroller"><span>', $context['news_lines'][0], '</span></div>
</div>
<script language="JavaScript" type="text/javascript"><!-- // --><![CDATA[
// The fading delay (in ms.)
var smfFadeDelay = ', empty($settings['newsfader_time']) ? 5000 : $settings['newsfader_time'], ';
// Fade from... what text color? To which background color?
var smfFadeFrom = {"r": 0, "g": 0, "b": 0}, smfFadeTo = {"r": 255, "g": 255, "b": 255};
// Surround each item with... anything special?
var smfFadeBefore = "<b>", smfFadeAfter = "</b>";

var foreColor, foreEl, backEl, backColor;

if (typeof(document.getElementById(\'smfFadeScroller\').currentStyle) != "undefined")
{
foreColor = document.getElementById(\'smfFadeScroller\').currentStyle.color.match(/#([\da-f][\da-f])([\da-f][\da-f])([\da-f][\da-f])/);
smfFadeFrom = {"r": parseInt(foreColor[1]), "g": parseInt(foreColor[2]), "b": parseInt(foreColor[3])};

backEl = document.getElementById(\'smfFadeScroller\');
while (backEl.currentStyle.backgroundColor == "transparent" && typeof(backEl.parentNode) != "undefined")
backEl = backEl.parentNode;

backColor = backEl.currentStyle.backgroundColor.match(/#([\da-f][\da-f])([\da-f][\da-f])([\da-f][\da-f])/);
smfFadeTo = {"r": eval("0x" + backColor[1]), "g": eval("0x" + backColor[2]), "b": eval("0x" + backColor[3])};
}
else if (typeof(window.opera) == "undefined" && typeof(document.defaultView) != "undefined")
{

foreEl = document.getElementById(\'smfFadeScroller\');

while (document.defaultView.getComputedStyle(foreEl, null).getPropertyCSSValue("color") == null && typeof(foreEl.parentNode) != "undefined" && typeof(foreEl.parentNode.tagName) != "undefined")
foreEl = foreEl.parentNode;

foreColor = document.defaultView.getComputedStyle(foreEl, null).getPropertyValue("color").match(/rgb\((\d+), (\d+), (\d+)\)/);
smfFadeFrom = {"r": parseInt(foreColor[1]), "g": parseInt(foreColor[2]), "b": parseInt(foreColor[3])};

backEl = document.getElementById(\'smfFadeScroller\');

while (document.defaultView.getComputedStyle(backEl, null).getPropertyCSSValue("background-color") == null && typeof(backEl.parentNode) != "undefined" && typeof(backEl.parentNode.tagName) != "undefined")
backEl = backEl.parentNode;

backColor = document.defaultView.getComputedStyle(backEl, null).getPropertyValue("background-color");//.match(/rgb\((\d+), (\d+), (\d+)\)/);
smfFadeTo = {"r": parseInt(backColor[1]), "g": parseInt(backColor[2]), "b": parseInt(backColor[3])};
}

// List all the lines of the news for display.
var smfFadeContent = new Array(
"', implode('",
"', $context['fader_news_lines']), '"
);
// ]]></script>
<script language="JavaScript" type="text/javascript" src="', $settings['default_theme_url'], '/scripts/fader.js"></script>

</td>
</tr>
</table>';
}



Fussilet


zanes

I have problem with german letters.
Sometime and some were is ok (Handyzubehör [nofollow]), some ware show this: iPod Zubeh�r
Why?
Where I can download Settings.german.php? I would made images from .psd

Tnx for theme.

----------------
Now playing: CAFE DEL MAR - Les Negresses Vertes-Face A La Mer (Massive Attack RMX) [nofollow]
via FoxyTunes [nofollow].

GSM Accessoires [nofollow] - Nokia Zubehör [nofollow] - Handy Zubehör [nofollow]

silber112

Great Theme!

But, In other colours it would be nice too... ¿Are you going to do in the future the theme in more colours?

mrtrc266

Quote from: silber112 on April 13, 2009, 02:51:37 PM
Great Theme!

But, In other colours it would be nice too... ¿Are you going to do in the future the theme in more colours?

All your colors can be changed playing with the style.css file in your extreme6 theme directory
Check it out here http://monsters-mansion.com

silber112

Quote from: mrtrc266 on April 13, 2009, 03:07:09 PM
Quote from: silber112 on April 13, 2009, 02:51:37 PM
Great Theme!

But, In other colours it would be nice too... ¿Are you going to do in the future the theme in more colours?

All your colors can be changed playing with the style.css file in your extreme6 theme directory
Check it out here http://monsters-mansion.com

I mean everithing not only the css. The images, etc... Like Dilber MC
I will try to do it if i have free time and i will post here my colour versions  :)

mrtrc266

#278
Hi Fussilet it's me again LOL

There seems to be a cpl things that are not aligned properly. The info icons under the profile info in a post are going down in 1 column vs. going across in a row like here on the SMF Boards.

Also, the signature is way to high also like here on the SMF Boards it should be towards the bottom of the post, maybe even with a horizontal line.

Please see pics for better explanation, as always thanks in advance.

Here is what it currently looks like...
sigincorrect.png picture by mrtrc266

This is what it should be like......I think
sigcorrect.png picture by mrtrc266

Babyloniia

Hello There, i have on www.Babyloniia.dk/forum installed SMF 1.1.8 "Which i hope is Installed correclty.

How ever im a fan of Dark forums, and a fan of Extreme 6. But i could not find any thing about how to install that theme, in a b c / 1. 2 . 3 because im a noob,


Some can tell me or someone have the right link for the proper installation.

Greetings

Advertisement: