|
|||||||
| General Discussion and support for your general issues associated with web design. |
![]() |
|
|
Thread Tools | Rate Thread | Display Modes |
|
#1
|
||||
|
||||
|
Normally I wouldn't give a hoot about IE users, but as 90% of users suffer the internet instead of surfing it I need to make my site workable in their browser. I wrote and trouble-shooted it with Firefox but before uploading the page I looked at it in IE, and the forms don't work. Here's my code for index.htm:
Code:
<html> <head> <title>Bleakest Irony</title> <link rel="stylesheet" type="text/css" href="stylesheet.css" /> <script language="JavaScript" src="form.js" type="text/javascript" /> <meta name="robots" content="noindex, nofollow" /> </head> <body> <table width="300" align="left" border="0" cellpadding="30" cellspacing="0"> <tr><td> <form name="password1"> <p>Username: <input type="text" name="username2" size="18"></p> <p>Passcode: <input type="password" name="password2" size="18"></p> <p><input type="button" value="Submit" onClick="submitentry()"></p> </form> </td></tr> </table> </body> </html> Code:
body { background: url(mhs.png) 100% 100% fixed no-repeat;
background-color: #001100; }
p { font-family: "Courier New", "Courier",
"Monospace"; font-size: 12; color: #009900; text-align: center; }
p:first-letter { font-weight: bold; }
input { font-family: "Courier New", "Courier",
"Monospace"; font-size: 12; color: #009900;
background-color: #002200; border-color: #007700; }
textarea{ font-family: "Courier New", "Courier",
"Monospace"; font-size: 12; color: #009900;
background-color: #002200; border-color: #007700; }
EDIT: Changed code so it doesn't scroll off the page.
__________________
I have 49[/size][size=4] GMAIL invites left. PM me with your email address if you want 'em. Note: I only check my email about once or twice a day, so it may take a while for me to send the invite. Sorry! Last edited by Eric Melech; 02-02-2005 at 08:42 AM. |
|
#2
|
||||
|
||||
|
... so what doesn't work exactly?
|
|
#3
|
||||
|
||||
|
Quote:
Quote:
http://img.photobucket.com/albums/v8...lech/ieff1.png And here in IE: http://img.photobucket.com/albums/v8...lech/ieff2.png Oh, and the title and the png in the corner? Those are just placeholders until I actually upload the page.. which won't happen unless it's fixed because I refuse to shove something on the 'net that doesn't work. Edit: Ooops! I forgot to blurr out the naughty words in my images before uploading and posting! My apologies; please ignore. Thanks....
Last edited by Eric Melech; 02-01-2005 at 08:47 AM. |
|
#4
|
||||
|
||||
|
I can't see anything that would cause a problem. Can you upload the actuall page?
__________________
"If at first you do suceed, try not to look astonished." I have 50 gmail invitations at my disposal, if you want one pm me with your First and Last name and your email address HTTPGuru |
|
#5
|
||||
|
||||
|
Adding a doctype at the top of the HTML would be a good thing - looks like you want a XHTML type?
"font-size: 12" is invalid - you need a unit after the number (px, pt, %, etc.).
__________________
"Please give us a simple answer, so that we don't have to think, because if we think, we might find answers that don't fit the way we want the world to be." ~ Terry Pratchett in Nation Kindle Minds (blog about Amazon Kindle) |
|
#6
|
||||
|
||||
|
Quote:
Quote:
Quote:
![]() EDIT: Just changed the font sizes and added doctypes but it still doesn't work in IE. I am totally stumped. I even tried killing the tables. Nothing. I guess it's time for my friends to start using a browser that isn't seven years out of date, even if it means I gotta drive to their houses and install it by hand. Last edited by Eric Melech; 02-02-2005 at 08:29 AM. |
|
#7
|
||||
|
||||
|
Change this: <script language="JavaScript" src="form.js" type="text/javascript" />
to: <script type="text/javascript" src="form.js"></script> |
|
#8
|
||||
|
||||
|
Fang.. I love and hate you. I love and hate you. I feel like kissing and kicking you.
Let it be declared.. Fang is a genius! All hail Fang! |
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|