cheap server hosting?

Anything About Anything...
Post Reply
[<AI>]VIPER
Posts: 4
Joined: Sat Feb 03, 2007 6:57 am
Contact:

cheap server hosting?

Post by [<AI>]VIPER »

Are there any websites where i can get cheap armagetron server hosting??? :?: :?: :?:
[<AI>]VIPER
User avatar
wrtlprnft
Reverse Outside Corner Grinder
Posts: 1679
Joined: Wed Jan 04, 2006 4:42 am
Location: 0x08048000
Contact:

Post by wrtlprnft »

There's no place like ::1
[<AI>]VIPER
Posts: 4
Joined: Sat Feb 03, 2007 6:57 am
Contact:

Post by [<AI>]VIPER »

thanks but the page is all screwed up :evil:
[<AI>]VIPER
User avatar
wrtlprnft
Reverse Outside Corner Grinder
Posts: 1679
Joined: Wed Jan 04, 2006 4:42 am
Location: 0x08048000
Contact:

Post by wrtlprnft »

Can't see where it's screwed up, the only thing I notice is that the javascript to convert prices doesn't work in Internet Explorer. Get a better browser :P
There's no place like ::1
User avatar
Lackadaisical
Shutout Match Winner
Posts: 823
Joined: Sun Dec 21, 2003 4:58 pm
Location: Amsterdam, Netherlands
Contact:

Post by Lackadaisical »

For some reason, it looks like you can't use an id called body in internet explorer 7 because the body tag inherits those properties. In this case, the nav is 20ex from the left because of the body-tag margin, and since margins don't add up it's placed on top of the stuff with the body-id.

But yes, you should get a better browser. Here's why.
User avatar
wrtlprnft
Reverse Outside Corner Grinder
Posts: 1679
Joined: Wed Jan 04, 2006 4:42 am
Location: 0x08048000
Contact:

Post by wrtlprnft »

Omg. That's a bad joke by microsoft, right? And why does it work with #body and <body>, but not with #span and <span>?

I didn't even bother to test luke's site in IE7 because I thought it was supposed to fix bugs, not introduce them.
There's no place like ::1
User avatar
Lackadaisical
Shutout Match Winner
Posts: 823
Joined: Sun Dec 21, 2003 4:58 pm
Location: Amsterdam, Netherlands
Contact:

Post by Lackadaisical »

Um.. guess I am? :oops: It doesn't get any other properties, so it's probably something else.


edit: Ok, looked at it, and it seems internet explorer 7 needs the "left" declaration when you use position: fixed, because it isn't defined right now and it somehow inherits the margin-left from #body?
User avatar
kyle
Reverse Outside Corner Grinder
Posts: 1975
Joined: Thu Jun 08, 2006 3:33 pm
Location: Indiana, USA, Earth, Milky Way Galaxy, Universe, Multiverse
Contact:

Post by kyle »

http://ie7.com links you to the best browser
User avatar
wrtlprnft
Reverse Outside Corner Grinder
Posts: 1679
Joined: Wed Jan 04, 2006 4:42 am
Location: 0x08048000
Contact:

Post by wrtlprnft »

Code: Select all

--- /www2/lukeie7/Cheap Game Server Hosting_files/style001.css  2007-03-13 22:28:49.000000000 +0100
+++ /www2/lukeie7/Cheap Game Server Hosting_files/style000.css  2007-03-13 22:28:54.000000000 +0100
@@ -9,6 +9,7 @@
        float: left;
        height: 100%;
        position: fixed;
+       left:0;
        overflow: auto;
        padding: 1ex;
 }
@@ -24,7 +25,7 @@
 }


-#body {
+div#body {
        margin-left: 20ex;
        padding: 1ex;
 }
That appears to work.

By the way, if the browser window is so small that the navigation needs its own scrollbar the bottom 5ex of the content and the bottom 10ex of the scrollbar (ie the down arrow) get cut off, as the total height of the box will be 10ex+window height.
I suggest you add top:0; and bottom:0; as well and remove the height.
There's no place like ::1
Post Reply