News:

Bored?  Looking to kill some time?  Want to chat with other SMF users?  Join us in IRC chat or Discord

Main Menu

SMF: Revisited

Started by 1MileCrash, November 26, 2007, 08:59:50 PM

Previous topic - Next topic

1MileCrash

Link to the theme


Introducing my newest theme, and my first theme released in over a year! It is my pleasure to present to you SMF: Revisited.

I found myself looking back at all of my themes. While they were very good, they all lacked something, the SMF spirit.

That is why in this theme, along with the beautiful graphics and highly modified templates you'd expect, I decided to honor SMF by making the theme in the color scheme we've all grown to love that is present in the babylon theme and the NDT in some ways as well.

Perhaps the most unique feature to SMF: Revisited is the topic view. This was basically a tinker project of mine. All of the replies have been made "sub-ordinate" to the topic itself, separating topics, and replies entirely.

This theme also includes a flash header, along with navigation, banner, search, and login forms. However, the flash movie loads external files for the forum banner AND your slogan, which means, if you want to change the "Simple Machines" (who doesn't?) you don't even need flash!

To change these things, simply edit the provided "forum_name.psd" and "slogan.psd" and save them as "forum_name.jpg" and "slogan.jpg" and the flash header will update itself as well! Remember to save your .jpg on a high quality setting.

I hope you enjoy using this theme as much as I enjoyed making it!

Soon to come -

- Flash free version
- Fluid version of flash free version
- Optional "traditional style" topic view.

And as always, this theme validates as xhtml 1.0 Transitional and uses a standards-compliant stylesheet!

Please PM me if you find any missing buttons, images, layout problems, or anything else! Due to the drastic changes, it is possible I missed something. I almost released it yesterday - without any poll display at all! Yoink!

Tested in Opera, firefox, and IE. Differences between browsers are minimal and will not affect anything.

NOTE: This theme MUST install as "revisited" set as the theme directory!

Reccomendations:
-This theme was designed with "inline links" in mind, I reccomend you enable these over the default link tree.

-Member avatar size should not exceed 120 pixels in width, cutoff will occur if they exceed this by too much.

Enjoy!

Demo availible here

-Thumbnail Attached
-Topic Dispaly Preview Attached

The only thing php can't do is tell you how much milk is left in the fridge.



IchBin™

Sounds on the mouseover for menu.... ugh. Looks great though Tipp. Good to see a theme from you again.
IchBin™        TinyPortal

Lord Mavex

this theme is very good, i'm definitaly using it =)

Panzer-

Looks very secksi and modern.

Nice job : )

Dragooon

#4
Wow!
After PitchBlack, I found this awesome!

Great job TM!
EDIT:
I Think I'll use some part of it in my forums New upcoming theme. Hope you won't mind it :)

shadow82x

Probaly the best SMF theme I have seen yet. The board hovers look amazing. Awsome job TM.

Even the custom images.
Colin B
Former Spammer, Customize, & Support Team Member

Crip

Very unique looking and well thought out Theme..looks fantastic Tipp! :)
I have become comfortably numb!


I remember my mother's prayers and they have always followed me.
   - Abraham Lincoln -



TOTM Winner. | Demo Site1on1 Theme Support

1MileCrash

#7
Quote from: Dragooon on November 26, 2007, 10:18:56 PM
Wow!
After PitchBlack, I found this awesome!

Great job TM!
EDIT:
I Think I'll use some part of it in my forums New upcoming theme. Hope you won't mind it :)

Thanks, pitchblack is making a comeback as well..  ;D

Glad you guys like it, and thanks for the comments shadow.
The only thing php can't do is tell you how much milk is left in the fridge.



connor11

It is a nice theme otherthan being invalid XHTML.

Dragooon

No, As said in first post this is valid XHTML.

1MileCrash

Quote from: TilT on November 27, 2007, 11:47:50 AM
It is a nice theme otherthan being invalid XHTML.

Every page should validate..

truth be told most of it was coded for strict doctype, it's far from being invalid transitional...
The only thing php can't do is tell you how much milk is left in the fridge.



Stargater59

Wow.. Nice theme.

May I ask how you got the Child board links to be in the boards description area? I want to do something similar on my theme, but I don't know how..

inbetwee

#12
before Go Down you see this <;b>

Inbetwee

1MileCrash

Ahh, I thought i caught all of those things. That happens to me if i edit templates in the admin cp fore some reason..

I'll have the package updated in a few minutes.
The only thing php can't do is tell you how much milk is left in the fridge.



tr0y

The Theme is quite awesome..i like too much...

But one more thing when I installed it, I can't see the admin button in order for me to go to the admin panel...

Hope you can help me with this.

Cheers

inbetwee


tr0y

Quote from: inbetwee on November 27, 2007, 04:27:05 PM
press Quick links

When I click link... I can only see the My Messages option the rest are blank....any idea?

1MileCrash

Inbetwee- the issue you found has been fixed and the changes were made to the download.

Quote from: tr0y on November 27, 2007, 04:40:14 PM
Quote from: inbetwee on November 27, 2007, 04:27:05 PM
press Quick links

When I click link... I can only see the My Messages option the rest are blank....any idea?

Wha? Is ThemeStrings.english.php in the theme directory? Are you using a different language?

Quote from: Stargater59 on November 27, 2007, 04:10:19 PM
Wow.. Nice theme.

May I ask how you got the Child board links to be in the boards description area? I want to do something similar on my theme, but I don't know how..

This is a default feature of smf, look in the theme settings.
The only thing php can't do is tell you how much milk is left in the fridge.



inn0c3nt

great theme first of all...

one suggestion: is it possible to have attachments shown in the message it self on threads instead of the text "This post has items attached to it. Please expand the bottom window to view them"

Other than that, great theme
University of Ontario Institute of Technology
UOIT IEEE Student Branch
http://www.uoitieee.com/forum/index.php

1MileCrash

Of course it's possible, just takes some editing.

Open up display.template, this will occure twice:


';

if (!empty($message['attachment']))
{
echo'<center><span class="smalltext"><i>',$txt['are_attachments3'],'</i></span></center>';
}

echo'



Delete it and replace it both times it with this:

<div style="overflow: auto; width: 100%;">';
         foreach ($message['attachment'] as $attachment)
         {
            if ($attachment['is_image'])
            {
               if ($attachment['thumbnail']['has_thumb'])
                  echo '
                           <a href="', $attachment['href'], ';image" id="link_', $attachment['id'], '" onclick="', $attachment['thumbnail']['javascript'], '"><img src="', $attachment['thumbnail']['href'], '" alt="" id="thumb_', $attachment['id'], '" border="0" /></a><br />';
               else
                  echo '
                           <img src="' . $attachment['href'] . ';image" alt="" width="' . $attachment['width'] . '" height="' . $attachment['height'] . '" border="0" /><br />';
            }
            echo '
                              <a href="' . $attachment['href'] . '"><img src="' . $settings['images_url'] . '/icons/clip.gif" align="middle" alt="*" border="0" /> ' . $attachment['name'] . '</a> (', $attachment['size'], ($attachment['is_image'] ? ', ' . $attachment['real_width'] . 'x' . $attachment['real_height'] . ' - ' . $txt['attach_viewed'] : ' - ' . $txt['attach_downloaded']) . ' ' . $attachment['downloads'] . ' ' . $txt['attach_times'] . '.)<br />';
         }

         echo '
                           </div>


And that should be it.
The only thing php can't do is tell you how much milk is left in the fridge.



Advertisement: