squiblo Posted July 23, 2009 Share Posted July 23, 2009 this script works in all other browsers put now Internet Explorer what is the problem?? <div id="wb_text13" style="position:absolute;left:95px;top:197px;width:330px;height:29px;z-index:29" align="center" <font style="font-size:20px" color="#FF0000" face="Arial"><u>Incorrect Username or password!</u></font></div> my doctype is... <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> Link to comment https://forums.phpfreaks.com/topic/167188-ie-problem/ Share on other sites More sharing options...
stickynote427 Posted July 23, 2009 Share Posted July 23, 2009 1. This forum is for PHP help, and I don't see any PHP in your code. 2. You say that your "script" isn't working, but I can't seem to find a bit of script-like text anywhere in your post. What do you mean it's not working in IE? What happens? Link to comment https://forums.phpfreaks.com/topic/167188-ie-problem/#findComment-881528 Share on other sites More sharing options...
squiblo Posted July 23, 2009 Author Share Posted July 23, 2009 this: <div id="wb_text13" style="position:absolute;left:95px;top:197px;width:330px;height:29px;z-index:29" align="center" <font style="font-size:20px" color="#FF0000" face="Arial"><u>Incorrect Username or password!</u></font></div> the color or font does not show Link to comment https://forums.phpfreaks.com/topic/167188-ie-problem/#findComment-881536 Share on other sites More sharing options...
waynew Posted July 23, 2009 Share Posted July 23, 2009 Try: <div id="wb_text13" style="position:absolute;left:95px;top:197px;width:330px;height:29px;z-index:29;color:#FF0000;"> <font style="font-size:20px" face="Arial"><u>Incorrect Username or password!</u></font></div> You forgot to close off your first div tag too, mind you. Link to comment https://forums.phpfreaks.com/topic/167188-ie-problem/#findComment-881541 Share on other sites More sharing options...
stickynote427 Posted July 23, 2009 Share Posted July 23, 2009 I don't see it necessarily appropriate to post that here, but I'll help anyways. You end your style attribute too soon. Change this: <font style="font-size:20px" color="#FF0000" face="Arial"> to this: <font style="font-size:20px;color:#FF0000;font-family:arial;"> Link to comment https://forums.phpfreaks.com/topic/167188-ie-problem/#findComment-881542 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.