Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
Website looks different in Explorer 6 & 7 can't figure out why
Old 07-10-2010, 04:20 PM Website looks different in Explorer 6 & 7 can't figure out why
Junior Talker

Posts: 3
Trades: 0
My website looks the way I want it to when using Firefox, Safari, and Netscape, and Internet Explorer 8. It is having formatting problems and looks terrible when Using Internet Explorer 6 or 7. I am having a hard time trying to fix this problem. Please let me know if anyone has any suggestions. The website is http://www.origindiagnostics.com


Thanks in advance for your help.
Marc
MarcAW is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 07-10-2010, 05:38 PM Re: Website looks different in Explorer 6 & 7 can't figure out why
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
First, you need to fix your coding errors.
The <script> tag belongs INSIDE the <head> section.

The <center> tag -an ugly deprecated tag that isnt' even valid in your doctype, does NOT belong outside the <body> - nothing 'wraps' around the body tags. Use CSS to center your web site - see our stickies for how to do that. In your case, remove the <center> tags and add margin: 0 auto; to your #wrapper css, that will center it w/o that nasty tag.

You've got a serious case of div-itis - what WYSIWYG editor are you using ? Typical of such programs, it produces some really horrible code.

You also shouldn't be using font sizes like "small" and "large" , specify a font size in either px or em units, you'll get much more consistent text rendering cross-browser.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
Reply With Quote
View Public Profile
 
Old 07-10-2010, 06:08 PM Re: Website looks different in Explorer 6 & 7 can't figure out why
Junior Talker

Posts: 3
Trades: 0
Thanks for your help. I just changed the <script> tag, got rid of the <center> tag, and specified the font like you said. I made the site using dreamweaver.... what is the div-itis? I'm still having the same problems when viewing in Internet Explorer 6 and 7. Explorer 8, Safari, Firefox, Netscape looks fine. Any other suggestions? I really appreciate your help.
MarcAW is offline
Reply With Quote
View Public Profile
 
Old 07-11-2010, 08:41 AM Re: Website looks different in Explorer 6 & 7 can't figure out why
stevecane's Avatar
Skilled Talker

Posts: 64
Name: Steve Q
Location: Newcastle UK
Trades: 0
Type 'cross browser testing' into Google, you'll get lots of useful info.

S
__________________

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
|

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
stevecane is offline
Reply With Quote
View Public Profile Visit stevecane's homepage!
 
Old 07-11-2010, 02:02 PM Re: Website looks different in Explorer 6 & 7 can't figure out why
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
Quote:
what is the div-itis?
It means you're using way too many divs and using divs where other elements, like lists, would be more appropriate and cleaner.

Unless you've got a large number of visitors using IE6, there's no reason to worry about it, let alone to keep supporting that nearly 10 year old piece of junk browser. The sooner designers stop supporting it, the sooner it will be permanently in it's grave where it belongs. Upgrades are free -- in any country.

The site looks ok in IE7, just get rid of the borders on the linked images. Add this to your css: a img{border: none;} to your css.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
Reply With Quote
View Public Profile
 
Old 07-12-2010, 06:43 PM Re: Website looks different in Explorer 6 & 7 can't figure out why
Junior Talker

Posts: 3
Trades: 0
Thanks again for your response. Where do I add the border:none; in my css? To the a:link? I'm sorry if this is a dumb question but I'm new to programming and basically have been teaching myself. I tried putting it there and nothing happened.

I also am very confused why the cell_2_1 is not the same size as (Cell_1_1, Cell_1_2, Cell 1_3,Cell_1_4) and the same with Cell_5_1 in comparison with (Cell_3_1 - 3_6 ...and Cell_4_1 -4_6) ONLY IN INTERNET EXPLORER 7. They are aligned in the other browsers.

If you could answer this question I would greatly appreciate it. Thanks again for all of your help.
MarcAW is offline
Reply With Quote
View Public Profile
 
Old 07-13-2010, 03:04 PM Re: Website looks different in Explorer 6 & 7 can't figure out why
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
You add this whole thing to the CSS file:

Quote:
a img{border: none;}
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
Reply With Quote
View Public Profile
 
Old 07-20-2010, 08:09 PM Re: Website looks different in Explorer 6 & 7 can't figure out why
Average Talker

Posts: 17
Name: partizan
Trades: 0
Quote:
Originally Posted by LadynRed View Post
First, you need to fix your coding errors.
The <script> tag belongs INSIDE the <head> section.

The <center> tag -an ugly deprecated tag that isnt' even valid in your doctype, does NOT belong outside the <body> - nothing 'wraps' around the body tags. Use CSS to center your web site - see our stickies for how to do that. In your case, remove the <center> tags and add margin: 0 auto; to your #wrapper css, that will center it w/o that nasty tag.

You've got a serious case of div-itis - what WYSIWYG editor are you using ? Typical of such programs, it produces some really horrible code.

You also shouldn't be using font sizes like "small" and "large" , specify a font size in either px or em units, you'll get much more consistent text rendering cross-browser.
Thanks ı have the same problem but ı solved ıt
Tezcan is offline
Reply With Quote
View Public Profile Visit Tezcan's homepage!
 
Old 07-21-2010, 10:31 AM Re: Website looks different in Explorer 6 & 7 can't figure out why
Registered User

Posts: 86
Name: John Dacu
Trades: 0
Quote:
Originally Posted by LadynRed View Post
First, you need to fix your coding errors.
The <script> tag belongs INSIDE the <head> section.
First i don't think is correct. It is a good practice to put the scripts at the bottom of page. This way, the code is executed after the page is loaded.

May problems in IE occurs from double margin bug on floated elements. I haven't any multiIE software right now to preview your website. If you could attach a printscreen maybe i'll come with a solution.
johnny.dacu is offline
Reply With Quote
View Public Profile
 
Old 07-21-2010, 09:34 PM Re: Website looks different in Explorer 6 & 7 can't figure out why
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
My point was that it did not belong where it was. If you are going to be CALLING scripts from external files using the <script> tag as you were, that HAS to go in the <head> of the document.

If you're getting the doubled-float margin bug in IE, then you need to use conditional comments to call a SEPARATE "iefixes.css" file that contains ONLY the code needed to correct the problem. To kill this bug you need to add display: inline to div that has the margin that's getting doubled.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Website looks different in Explorer 6 & 7 can't figure out why
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.40464 seconds with 12 queries