What theme is this? I love it.

  • jgantes
  • Newbie
  • Newbie
  • No Avatar
  • Joined: Feb 13, 2004
  • Posts: 7
  • Status: Offline

Post February 13th, 2004, 1:44 pm

Hello,

I just started my own PHPBB forum recently and I was looking for good themes. I've found quite a few sites that have some free ones, but the on on THIS SITE is great.

Is this a common theme, or does anyone know where to get it? I like the simplicity and the colors used.

If it's free and posted somewhere, or the webmasters of this site know where to get it, please let me know.

looks good!

-J
  • Anonymous
  • Bot
  • No Avatar
  • Joined: 25 Feb 2008
  • Posts: ?
  • Loc: Ozzuland
  • Status: Online

Post February 13th, 2004, 1:44 pm

  • UNFLUX
  • Genius
  • Genius
  • User avatar
  • Joined: Dec 20, 2002
  • Posts: 6382
  • Loc: twitter.com/unflux
  • Status: Offline

Post February 13th, 2004, 2:02 pm

I answered you PM. welcome to ozzu. :)
UNFLUX.FOTO
  • jgantes
  • Newbie
  • Newbie
  • No Avatar
  • Joined: Feb 13, 2004
  • Posts: 7
  • Status: Offline

Post February 13th, 2004, 2:05 pm

Apologies for the multiple posts. Thanks a ton for the info.

I'll check out Smartor.
  • jgantes
  • Newbie
  • Newbie
  • No Avatar
  • Joined: Feb 13, 2004
  • Posts: 7
  • Status: Offline

Post February 13th, 2004, 4:00 pm

I have used fader.js before on simple HTML sites, but never on one that utilized CSS. Is there a simple way to insert script into a style sheet so it will appear on every page?

Thanks,

-J
  • ATNO/TW
  • Super Moderator
  • Super Moderator
  • User avatar
  • Joined: May 28, 2003
  • Posts: 23404
  • Loc: Woodbridge VA
  • Status: Offline

Post February 13th, 2004, 4:23 pm

The fader.js is one that Bigwebmaster added and is not part of the normal smartDark style. You need to add the link reference to it in the head tags of the overall_header.tpl file in the template you are using and either copy the fader.js file to the template directory if you're using a relative link or use an absolute link if you place it elsewhere (in other words make sure your path to the script is correct).
"There's no place like 127.0.0.1 except for ::1."
Alexandria Networks. Leader in IT consulting for associations/non-profits, and small to medium sized businesses around the northern Virginia and Washington D.C. metro area.
  • jgantes
  • Newbie
  • Newbie
  • No Avatar
  • Joined: Feb 13, 2004
  • Posts: 7
  • Status: Offline

Post February 13th, 2004, 4:30 pm

Appreciate the help. I had just tried doing as you suggested, by placing the following code into the Overall_Header.tpl for my Template. However, it doesn't appear to load.

Code: [ Select ]
<script type="text/javascript" src="fader.js">
<script language="Javascript" type="text/javascript">
</script>
  1. <script type="text/javascript" src="fader.js">
  2. <script language="Javascript" type="text/javascript">
  3. </script>


Just curious if I am doing something wrong. I placed the fader.js in the same directory where the Overall_Header.tpl is located.

Thanks

-J
  • ATNO/TW
  • Super Moderator
  • Super Moderator
  • User avatar
  • Joined: May 28, 2003
  • Posts: 23404
  • Loc: Woodbridge VA
  • Status: Offline

Post February 13th, 2004, 4:59 pm

I think it should be this:
Code: [ Select ]
<script type="text/javascript" src="fader.js"></script>
<script type="text/javascript" src="jsfunctions.js"></script>
  1. <script type="text/javascript" src="fader.js"></script>
  2. <script type="text/javascript" src="jsfunctions.js"></script>


I'll have to leave it to Bigwebmaster to correct me if I'm wrong (since I've never played with the script), but I just assumed the jsfunction.js plays hand in hand with the fader.js script.
"There's no place like 127.0.0.1 except for ::1."
Alexandria Networks. Leader in IT consulting for associations/non-profits, and small to medium sized businesses around the northern Virginia and Washington D.C. metro area.
  • jgantes
  • Newbie
  • Newbie
  • No Avatar
  • Joined: Feb 13, 2004
  • Posts: 7
  • Status: Offline

Post February 13th, 2004, 5:03 pm

Thanks for the update. However, I went to the following site and they said that wasn't necessary. I am really stumped by all this since it works fine in HTML files. Please see

http://javascriptkit.com/script/script2/linkfader.shtml

That is where I originally obtained fader.js.

thanks for all your help!
  • ATNO/TW
  • Super Moderator
  • Super Moderator
  • User avatar
  • Joined: May 28, 2003
  • Posts: 23404
  • Loc: Woodbridge VA
  • Status: Offline

Post February 13th, 2004, 5:13 pm

I've actually been attempting to avoid this, but I'll try to do it with my own forum and get back with you if no one else clears it up before-hand. Gotta get some grub first.
"There's no place like 127.0.0.1 except for ::1."
Alexandria Networks. Leader in IT consulting for associations/non-profits, and small to medium sized businesses around the northern Virginia and Washington D.C. metro area.
  • jgantes
  • Newbie
  • Newbie
  • No Avatar
  • Joined: Feb 13, 2004
  • Posts: 7
  • Status: Offline

Post February 14th, 2004, 11:22 am

Thanks for all the help. It was recommend by a friend that I place the script in so it's after the existing script... however that didn't actually work at all either. Appreciate all the help since I've been plagued with this flu for 10 days. This is what I have now...

Code: [ Select ]
<script language="Javascript" type="text/javascript">

<!--
    if ( {PRIVATE_MESSAGE_NEW_FLAG} )
    {
        window.open('{U_PRIVATEMSGS_POPUP}', '_phpbbprivmsg',

'HEIGHT=225,resizable=yes,WIDTH=400');;
    }
//-->
</script>

<script type="text/javascript" src="fader.js"></script>
  1. <script language="Javascript" type="text/javascript">
  2. <!--
  3.     if ( {PRIVATE_MESSAGE_NEW_FLAG} )
  4.     {
  5.         window.open('{U_PRIVATEMSGS_POPUP}', '_phpbbprivmsg',
  6. 'HEIGHT=225,resizable=yes,WIDTH=400');;
  7.     }
  8. //-->
  9. </script>
  10. <script type="text/javascript" src="fader.js"></script>
  • jgantes
  • Newbie
  • Newbie
  • No Avatar
  • Joined: Feb 13, 2004
  • Posts: 7
  • Status: Offline

Post February 14th, 2004, 10:49 pm

Well, as it turns out, the whole problem was that the fader.js has to be in the ROOT of PHPBB, and NOT in the same folder as overall_header.tpl. Took me a while to figure that one out. Thanks for everyone's help.

Anyone know how to do the Table highlight effects using JS that they use on OZZU? I have another site which that could be useful for.

Thanks again,

j

Post Information

  • Total Posts in this topic: 11 posts
  • Users browsing this forum: No registered users and 115 guests
  • You cannot post new topics in this forum
  • You cannot reply to topics in this forum
  • You cannot edit your posts in this forum
  • You cannot delete your posts in this forum
  • You cannot post attachments in this forum
 
cron
 

© 2011 Unmelted, LLC. Ozzu® is a registered trademark of Unmelted, LLC.