IE is messing up my webpage

This is a discussion on "IE is messing up my webpage" within the Web Page Design section. This forum, and the thread "IE is messing up my webpage are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Closed Thread
 
LinkBack Thread Tools
  #1 (permalink)  
Old Mar 2nd, 2004, 15:13
Reputable Member
Join Date: Sep 2003
Location: USA
Posts: 112
Thanks: 0
Thanked 0 Times in 0 Posts
IE is messing up my webpage

My page looks lovely in Mozilla. Everything does what it's supposed to.

My table set at 85% width fits within the page without making scrollbars show up. My text shows up all on it's own.

IE is different. The table scrolls off the right side of the page and soem of the text doesn't show up right away (but if you drag your mouse over it, it does)

Obviously IE is playing fast and loose with HTML, but I don't know how to fix it.

I'm using CSS to have a left hand column and then I have this:
Code: Select all
	<h2>Print Books</h2>



<FORM NAME="PrintBooks" METHOD="post" ACTION="BookPrint.asp">
	Leave the text box blank to print them all. 

	Print first <INPUT TYPE = "text" NAME = "BooksToPrint" > 
	<SELECT NAME="list">
		<OPTION VALUE="ToDownload">Books reserved but not downloaded</OPTION>
		
			<OPTION VALUE="ToEdit">Books to Edit</OPTION>
		
		<OPTION VALUE="ToReview">Books to review</OPTION>
		<OPTION VALUE="Reviewed">Books reviewed this year</OPTION>
		
	</SELECT>
	 <INPUT Type="Submit" NAME="submit" Value="Print Books">
	
		
Mark these books as having been edited by me: <INPUT TYPE = "checkbox" NAME = "MarkEdited" VALUE="MarkEdited">
	
</FORM>





	<h2> Books to Edit</h2>
	
	

You have 12 books to edit.
	


	<table width="90%" border="0" cellspacing="0" cellpadding="2">
	  <tr>
			<th align="left">ISBN</th>
			<th align="left">Title</th>
			<th align="Center">Edit Level</th>
			<th> </th>
	  </tr>
	  
	  	<tr valign="top"> 
	  		<td nowrap>0-06-008671-8</a></td>
	  		<td>Thanksgiving at the Tappletons'</td>
	  		<td nowrap>Not Edited</td>
	  		<td nowrap><FORM NAME="Edit0-06-008671-8" METHOD="post" ACTION="BookReview.asp">
	  				<INPUT Type = "Hidden" NAME = "ISBN" Value = "0-06-008671-8">
	  				<INPUT Type = "Hidden" NAME = "Edit" Value = "Review">
	  				<INPUT Type="Submit" NAME="submit" Value="Edit this book"></form>
	  		</td>
			</tr>
etc.

It's the text in the first form that isn't showing up.

Thanks
jakyra

  #2 (permalink)  
Old Mar 2nd, 2004, 16:34
Rob's Avatar
Rob Rob is offline
Head Admin & CEO

SuperMember
Join Date: Jul 2003
Location: at my desk
Age: 34
Posts: 2,952
Blog Entries: 7
Thanks: 7
Thanked 4 Times in 4 Posts
Send a message via MSN to Rob Send a message via Skype™ to Rob
can you post a url to a txt version of this *entire* page?

I can't possibly see what's happening from the little piece of code.
__________________
Rob - SEO Specialist
Owner & Founder of Webforumz.com

I am currently unavailable for private work
  #3 (permalink)  
Old Mar 2nd, 2004, 18:08
Reputable Member
Join Date: Sep 2003
Location: USA
Posts: 112
Thanks: 0
Thanked 0 Times in 0 Posts
sure
page source: http://ci.education.umn.edu/developm...yBooksPage.txt
view in mozilla: http://ci.education.umn.edu/developm...llaMyBooks.gif
view in ie: http://ci.education.umn.edu/developm.../IEMyBooks.gif

Thanks
  #4 (permalink)  
Old Mar 2nd, 2004, 19:16
Rob's Avatar
Rob Rob is offline
Head Admin & CEO

SuperMember
Join Date: Jul 2003
Location: at my desk
Age: 34
Posts: 2,952
Blog Entries: 7
Thanks: 7
Thanked 4 Times in 4 Posts
Send a message via MSN to Rob Send a message via Skype™ to Rob
I STRONGLY suggest you try and validate this... I see loads of missing ending tags.

I'll try and look at this!
__________________
Rob - SEO Specialist
Owner & Founder of Webforumz.com

I am currently unavailable for private work
  #5 (permalink)  
Old Mar 2nd, 2004, 19:32
Reputable Member
Join Date: Sep 2003
Location: USA
Posts: 112
Thanks: 0
Thanked 0 Times in 0 Posts
Well, it's script generated, so the same errors would be repeated many times.

Thanks
jakyra
  #6 (permalink)  
Old Mar 2nd, 2004, 19:50
Rob's Avatar
Rob Rob is offline
Head Admin & CEO

SuperMember
Join Date: Jul 2003
Location: at my desk
Age: 34
Posts: 2,952
Blog Entries: 7
Thanks: 7
Thanked 4 Times in 4 Posts
Send a message via MSN to Rob Send a message via Skype™ to Rob
This is without doubt pretty bad html formatting.

Use all lowercase for html tags... remove the extra un-needed paragraph tags.
Don't surround forms in parapgraph tags and make sure to end all tags that dont have and ending tag
with /> (eg. &ltbr />)

To fix this, all I did was just add:- width:100%; to the CSS definition for the 'right' ID definition.

It will then use 100% of the available width... and your tables will use whatever percentage of that.

There is probabally a much better way of writing this, but that would involve getting it into a proper
CSS / XHTML layout.

I would highly recommend making sure you code validates using the W3C validation tool.

Hope this helps!
__________________
Rob - SEO Specialist
Owner & Founder of Webforumz.com

I am currently unavailable for private work
  #7 (permalink)  
Old Mar 2nd, 2004, 20:58
Reputable Member
Join Date: Sep 2003
Location: USA
Posts: 112
Thanks: 0
Thanked 0 Times in 0 Posts
*writes on the chalkboard* "I will endevor to use proper HTML formatting."

Wow. I didn't even know there was a W3C validation tool. That's cool!

I'll see how the CSS changes pan out tomorrow.

Thanks Rob
  #8 (permalink)  
Old Mar 2nd, 2004, 21:06
Rob's Avatar
Rob Rob is offline
Head Admin & CEO

SuperMember
Join Date: Jul 2003
Location: at my desk
Age: 34
Posts: 2,952
Blog Entries: 7
Thanks: 7
Thanked 4 Times in 4 Posts
Send a message via MSN to Rob Send a message via Skype™ to Rob
__________________
Rob - SEO Specialist
Owner & Founder of Webforumz.com

I am currently unavailable for private work
  #9 (permalink)  
Old Mar 4th, 2004, 14:00
Reputable Member
Join Date: Sep 2003
Location: USA
Posts: 112
Thanks: 0
Thanked 0 Times in 0 Posts
So, I tried adding width = 100% and it looks good in IE, but it's wrong in Mozilla. (the same way that it was wrong in IE before)

Damn browsers, can't they pick a standard and stick to it!

A lot of people who use my page are educators and so they may have Netscape so it's important to me that it looks good for both browsers

Do I need a different CSS page for different browsers?

can I put ASP code in my CSS page to make the decision on the fly?

Thanks!
jakyra
Closed Thread

Tags
messing, webpage

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
alert Message messing up sdbdgwood JavaScript Forum 0 Feb 8th, 2008 16:15
how to center webpage daan Web Page Design 20 Jan 4th, 2008 00:25
Tabs on my webpage pengyou Starting Out 5 May 23rd, 2007 20:52
Help with webpage please! simon123 Starting Out 8 Mar 15th, 2007 20:47
A webpage or... Eli Web Page Design 3 Mar 20th, 2006 15:52


All times are GMT. The time now is 02:45.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43