Whoah, shiny!!!!!

Hey Philip, Nice paint job. Did you get new rims included. This looks cool. F. :D...




Topic Options
#106196 - 07/31/02 03:13 PM Whoah, shiny!!!!!
felix Offline
addict

Registered: 10/28/99
Posts: 691
Loc: Hobart, Australia
Hey Philip,
Nice paint job.
Did you get new rims included.
This looks cool.
F.

laugh

Top
#106197 - 07/31/02 03:16 PM Re: Whoah, shiny!!!!!
JP- Offline
old hand

Registered: 06/29/01
Posts: 1015
frown

Top
#106199 - 07/31/02 03:54 PM Re: Whoah, shiny!!!!!
Admiral LSD Offline
old hand

Registered: 08/14/01
Posts: 991
vB licence run out or something? j/k laugh

Top
#106201 - 07/31/02 03:58 PM Re: Whoah, shiny!!!!!
yakkob Offline
addict

Registered: 03/14/00
Posts: 461
but I miss the old look frown

Hopefully it will grow on me..

Top
#106211 - 07/31/02 04:14 PM Re: Whoah, shiny!!!!!
Philipp Online   content
Pooh-Bah

Registered: 07/15/99
Posts: 1948
Loc: Vienna, Austria
Quote:
vB licence run out or something?

No, there is another reason. You see it tomorrow wink

Top
#106216 - 07/31/02 04:46 PM Re: Whoah, shiny!!!!!
JP- Offline
old hand

Registered: 06/29/01
Posts: 1015
Can we have some other colour scheme choices?

Top
#106220 - 07/31/02 05:03 PM Re: Whoah, shiny!!!!!
Xiven Offline
addict

Registered: 05/21/00
Posts: 690
I like the new look smile

phpBB has improved quite a bit in recent versions hasn't it?

Top
#106225 - 07/31/02 05:24 PM Re: Whoah, shiny!!!!!
Bursar Offline
addict

Registered: 05/04/00
Posts: 672
Yeah, it has come on. I was going to use it on a new site that I'm setting up, but had problems with some of the configuration options.

I switched over to XForums, and got everything running exactly how I wanted in a few mins.

Still, phpBB is a decent system, and hopefully it will continue to get better.

Top
#106273 - 08/01/02 12:19 AM Re: Whoah, shiny!!!!!
Alien Offline
addict

Registered: 01/28/02
Posts: 599
Phlipp - PLEASE don't use fixed sized fonts on the forum, as this stops IE's View -> Text Size setting from having any effect on it.

Top
#106285 - 08/01/02 01:46 AM Re: Whoah, shiny!!!!!
Philipp Online   content
Pooh-Bah

Registered: 07/15/99
Posts: 1948
Loc: Vienna, Austria
Quote:
Phlipp - PLEASE don't use fixed sized fonts on the forum, as this stops IE's View -> Text Size setting from having any effect on it.

That is because of the XHTML templates. I possibly add more styles/template sets in a few days.

Top
#106286 - 08/01/02 01:58 AM Re: Whoah, shiny!!!!!
Alien Offline
addict

Registered: 01/28/02
Posts: 599
Quote:
Quote:
Phlipp - PLEASE don't use fixed sized fonts on the forum, as this stops IE's View -> Text Size setting from having any effect on it.

That is because of the XHTML templates. I possibly add more styles/template sets in a few days.

Ok, cool, cheers.

Another thing, don't know if it's possible or not, but what about some sort of thing to automatically resize images that are bigger than A x B pixels, to fit A x B? & something to force word-wrap on things like long paths or URLs. Just a couple of ideas, I know you're probably rushing round like a blue-arsed fly @ the mo, but I thought that as you're in the process of setting it all up now would be the right time to mention them.[size=9][/size]

Top
#106290 - 08/01/02 03:46 AM Re: Whoah, shiny!!!!!
Admiral LSD Offline
old hand

Registered: 08/14/01
Posts: 991
Quote:
Phlipp - PLEASE don't use fixed sized fonts on the forum, as this stops IE's View -> Text Size setting from having any effect on it.


Opera's zoom function still works laugh

Top
#106313 - 08/01/02 10:00 AM Re: Whoah, shiny!!!!!
CUViper Offline
old hand

Registered: 01/23/00
Posts: 1120
Quote:
Another thing, don't know if it's possible or not, but what about some sort of thing to automatically resize images that are bigger than A x B pixels, to fit A x B?
Something like this would have to be client side, as posted images are not hosted on the NTC server. So the server never sees the file, and has no idea if it's too big to fit on your screen. But, I believe if you turn on the "Enable Automatic Image Resizing" option in IE6, it will take care of this for you.

Top
#106323 - 08/01/02 02:20 PM Re: Whoah, shiny!!!!!
Alien Offline
addict

Registered: 01/28/02
Posts: 599
Quote:
Quote:
Another thing, don't know if it's possible or not, but what about some sort of thing to automatically resize images that are bigger than A x B pixels, to fit A x B?
Something like this would have to be client side, as posted images are not hosted on the NTC server. So the server never sees the file, and has no idea if it's too big to fit on your screen. But, I believe if you turn on the "Enable Automatic Image Resizing" option in IE6, it will take care of this for you.

No, it is enabled & it doesn't work like that. it only works when an image is addressed directly, rather than just put in a page, eg http://www.whatever.com/images/pic.jpg

There should actually be a way [for the images, I don't know about the word-wrap thing].

It should be possible to read the dimensions of the image with some sort of script, yes? So you could perhaps do something a bit like what I've put below, sorry I don't know PHP or whatever the forum uses, but I think you'll see what I'm getting @.

set maximum acceptable image size to A x B
read image dimensions into X & Y
Z=X/Y
If X>A make X=A
make Y=X/Z
If Y>B make Y=B AND make X=Y*Z

then make the script change the image tags so that it would read something like:
<img SRC="pic.jpg" height=X Width=Y>

[I apologise for any errors in my logic, it's been a long time since i did any coding]

& if you really wanna impress ppl, you might even make the width component of the maximum acceptable image size a percentage of the window width, thereby taking into account ppl using different screen resolutions.

Top
#106404 - 08/01/02 11:17 PM Re: Whoah, shiny!!!!!
Xiven Offline
addict

Registered: 05/21/00
Posts: 690
The image functions in PHP can only determine the size of an image stored on the same server. Realistically there is no way to do it other than using javascript since it is the client that loads the image, not the NTC web server.

Something like:

Code:
/* Get current image dimensions */
picWidth = document.getElementById&#40;"image1"&#41;.width
picHeight = document.getElementById&#40;"image1"&#41;.height
/* Do clever size manipulation calculations here */
......
......
/* Resize the image to new dimensions */
document.getElementById&#40;"image1"&#41;.width = picWidth
document.getElementById&#40;"image1"&#41;.height = picHeight


all in client-side javascript. It might work (not 100% sure on the DOM stuff there and it certainly wouldn't work in Opera), but to be honest it's far more hassle than it's worth, especially when it involves modifying someone else's forum code.

Top
#112547 - 10/12/02 05:15 PM Re: Whoah, shiny!!!!!
Alien Offline
addict

Registered: 01/28/02
Posts: 599
Quote:
Quote:
Phlipp - PLEASE don't use fixed sized fonts on the forum, as this stops IE's View -> Text Size setting from having any effect on it.

That is because of the XHTML templates. I possibly add more styles/template sets in a few days.

Umm...Philipp...???? I know you're a very busy chap, but any chance of this happening any time soon? If you don't have the time to do it yourself, could you delegate it to someone who does, please? I'd offer to do it myself, except I don't know anything about making Custom Style Sheets.

Top


Forums
Windows Support Forums
Everything New Technology
Legacy OS
Hardware
Software
Games
Networking
Customization & Tweaking
Security

Linux Support Forums
Everything Linux
Linux Hardware
Linux Software
Linux Games
Linux Networking
Linux Customization & Tweaking
Linux Security

Apple Support Forums
Everything Apple
Recent Topics
x86 OS, RAM, & Virtual Machines
by Myke
12/22/09 08:16 PM
Ram Question
by JohnnyAshes
12/21/09 09:50 PM
NEWBIE needs help with REALTEK
by SerryJW
12/21/09 06:09 AM
What version of Linux is this?
by DxxLinux
12/15/09 07:59 PM
Anything like HyperCam?
by Luckycharm8989
12/11/09 02:08 PM
Who's Online
1 Registered (Philipp), 185 Guests and 19 Spiders online.
Key: Admin, Global Mod, Mod
Forum Stats
91391 Members
24 Forums
59243 Topics
189768 Posts

Max Online: 1079 @ 03/12/08 01:36 PM

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22