0 Users appreciate this thread.
Web hosts
Fayne_Aldan (2012-08-21 12:00:05)THAT'S NOT WHAT HE MEANS!
-_-
I know one that worked PERFECTLY well on my old DSi, but the main website was shutdown so no one can register anymore. But, I know one that I think will work fairly well on a DSi.
http://www.000webhost.com
Also, don't use Proxion's code. That will just make EVERYTHING the width of your screen, even links and stuff making things an absolute wreck. If you were to use a better version of his code, replace "*" with "body". But for an easier alternative, use... wait, I forget the code. I think it's:
<meta type="viewport" value="device-width">
I'll post the correct code when I find it.
2012-08-21 12:07:34
Fayne_Aldan (2012-08-21 12:12:10)I found the code. You can use this code to make the page fit a DSi screen:
<meta name=viewport content=width=240>
Or use this code to make the page fit on any screen.
<meta name=viewport content=width=device-width>
And if you want to save space to type more text on your page, insert:
<style type="text/css">
body{
font-size: 1px;
}
</style>
That will make all text as small as possible while still being able to read it BUT it will make it impossible to read the text on a non-DSi device.
angelrulez7 (2012-08-26 03:04:42)Try http://3dswebhost.tk
My webhost.
If it works on 3DS, it should work on DSi.
a
Log in to submit a comment
Back to forum: Web Programming (HTML, JS, CSS, PHP, MySQL)
New registered users today: 7
Newest registered user: ElegantVulpes
I'm not sure. But to make sure it's formatted for a DSi, use;
<style type="text/css">
body{
width: device-width;
}
</style>
It also makes it 3DS- and PC-compatible.
EDIT: Fixed.
2012-08-21 13:00:00