473,408 Members | 2,734 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,408 software developers and data experts.

Cross Browser Compatibility Issue

Hello:

I am having a problem with a web site that i built not showing up properly in IE6. I haven't tested it in IE7, but I have tested it in Firefox and Safari. Both Firefox and Safari show the website perfectly. Can anyone help with this? I have attached the source code for the index.html file and the style.css file. In addition to the script, I also have this uploaded to my server. It can be found at: http://www.versionthree.ca/staging/incomesupport07

Thanks!

index.html ->
Expand|Select|Wrap|Line Numbers
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  5. <title>Income Support Class Action</title>
  6. <link href="style.css" rel="stylesheet" type="text/css" />
  7. </head>
  8. <body>
  9. <div id="home">
  10.   <div id="header">
  11.       <img src="images/bgTop.jpg" alt="" width="808" height="33" border="0" class="bgTop" />
  12.     <img src="images/header.jpg" alt="Income Support Class Action Header" width="778" height="151" border="0" class="header" />
  13.     <ul>
  14.       <li><a href="#">Home &nbsp;&nbsp;<span style="color:#5A5A5A;">|</span></a></li>
  15.       <li><a href="#">Button 1 &nbsp;&nbsp;<span style="color:#5A5A5A;">|</span></a></li>
  16.       <li><a href="#">Button 2 &nbsp;&nbsp;<span style="color:#5A5A5A;">|</span></a></li>
  17.       <li><a href="#">Button 3 &nbsp;&nbsp;<span style="color:#5A5A5A;">|</span></a></li>
  18.       <li><a href="#">Button 4</a></li>
  19.     </ul>
  20.   </div>
  21.   <div id="threeColumns">
  22.     <div id="columnLeft">
  23.       <h2>platea dictumst</h2>
  24.       <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been <span>the industry's standard dummy text ever since the 1500s,</span> when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
  25.       <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Proin eleifend, eros pulvinar ultricies bibendum, diam quam vehicula risus, ut hendrerit risus nisi vel leo. Ut consectetuer mollis enim. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Quisque dapibus cursus ante. Nullam imperdiet bibendum est. Cras nec lacus a orci laoreet volutpat. Phasellus pharetra. Nam non lacus.</p>
  26.       <p>Donec cursus, odio at aliquam condimentum, elit tortor pretium nulla, eget rutrum sapien elit a tellus. Sed ligula augue, molestie vestibulum, lobortis et, luctus at, massa. Morbi orci arcu, ultrices vel, scelerisque vitae, eleifend eget, augue. Donec nec urna. Pellentesque eget tellus.</p>
  27.       <p class="more"><a href="#">more</a></p>
  28.     </div>
  29.     <div id="columnRight">
  30.       <h2>phasellus viverra nisl</h2>
  31.       <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been <span>the industry's standard dummy text ever since the 1500s,</span> when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
  32.       <p><span>Lorem ipsum</span> dolor sit amet, consectetuer adipiscing elit. Proin eleifend, eros pulvinar ultricies bibendum, diam quam vehicula risus, ut hendrerit risus nisi vel leo. Ut consectetuer mollis enim. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Quisque dapibus cursus ante. Nullam imperdiet bibendum est. Cras nec lacus a orci laoreet volutpat. Phasellus pharetra. Nam non lacus.</p>
  33.       <p>Donec cursus, odio at aliquam condimentum, elit tortor pretium nulla, eget rutrum sapien elit a tellus. Sed ligula augue, molestie vestibulum, lobortis et, luctus at, massa. Morbi orci arcu, ultrices vel, scelerisque vitae, eleifend eget, augue. Donec nec urna. Pellentesque eget tellus.</p>
  34.       <p class="more"><a href="#">more</a></p>
  35.     </div>
  36.     <div id="columnMiddle">
  37.       <h2>faucibus arcu risus</h2>
  38.       <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been <span>the industry's standard dummy text ever since the 1500s,</span> when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
  39.       <p><span>Lorem ipsum</span> dolor sit amet, consectetuer adipiscing elit. Proin eleifend, eros pulvinar ultricies bibendum, diam quam vehicula risus, ut hendrerit risus nisi vel leo. Ut consectetuer mollis enim. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Quisque dapibus cursus ante. Nullam imperdiet bibendum est. Cras nec lacus a orci laoreet volutpat. Phasellus pharetra. Nam non lacus.</p>
  40.       <p>Donec cursus, odio at aliquam condimentum, elit tortor pretium nulla, eget rutrum sapien elit a tellus. Sed ligula augue, molestie vestibulum, lobortis et, luctus at, massa. Morbi orci arcu, ultrices vel, scelerisque vitae, eleifend eget, augue. Donec nec urna. Pellentesque eget tellus.</p>
  41.       <p class="more"><a href="#">more</a></p>
  42.     </div>
  43.   </div>
  44.   <img src="images/bgBottom.jpg" alt="" width="808" height="33" border="0" class="bgBottom" />
  45. </div>
  46. <div id="footer">
  47.   <div id="footerSubNav">
  48.     <ul>
  49.       <li><a href="#">Home</a>|</li>
  50.       <li><a href="#">Button 1</a>|</li>
  51.       <li><a href="#">Button 2</a>|</li>
  52.       <li><a href="#">Button 3</a>|</li>
  53.       <li><a href="#">Button 4</a></li>
  54.     </ul>
  55.     <ul class="info">
  56.       <li class="address">#55 Death Row<br />
  57.         Edmonton, AB<br />
  58.         CANADA</li>
  59.       <li class="phone"><span>PH: </span><br />
  60.         555-555-5555 <br />
  61.         555-555-5555</li>
  62.       <li class="fax"><span>FAX:</span> <br />
  63.         555-555-5555 <br />
  64.         555-555-5555</li>
  65.     </ul>
  66.   </div>
  67. </div>
  68. </body>
  69. </html>
  70.  
style.css ->
Expand|Select|Wrap|Line Numbers
  1. /* CSS Document */
  2. body{padding:0px; margin:17px 0 0; color:#5b5e65; font:14px/18px Arial, Helvetica, sans-serif; background-color:#00294A;}
  3. div, p, ul, li, h1, h2, h3, h4{padding:0px; margin:0px;}
  4. ul{list-style-type:none;}
  5.  
  6. /*---CONTENT WRAPPER*/
  7. #home{width:808px; position:relative; margin:0 auto; background:url(images/bgVertical.jpg) repeat-y #FFF; padding:0 0 20px 0;}
  8. #home img.bgBottom{width:808px; height:33px; position:relative; bottom:-30px; margin:0 auto; background:url(images/bgBottom.jpg) no-repeat #FFF; z-index:0;}
  9.  
  10. /*---NAV + LOGO + HEADER IMAGE---*/
  11. #header{width:808px; height:300px; position:relative; margin:0 auto;} 
  12. #header img.bgTop{width:808px; height:33px; position:absolute; background:url(images/bgTop.jpg) 0 0 no-repeat #FFF; top:0px; left:0px;}
  13. #header img.logo{width:230px; height:44px; position:absolute; top:48px; left:26px;}
  14. #header img.header{width:778px; height:151px; display:block; background:url(images/header.jpg) 0 0 no-repeat #FFF; color:#fff; position:relative; top:84px; margin: 0 auto;}
  15.  
  16. #header ul{width:430px; height:16px; display:block; position:absolute; top:44px; right:10px;}
  17. #header ul li{height:16px; float:left; padding:0 0 0 10px;}
  18. #header ul li a{height:16px; display:block; background:url(images/navIcon.gif) 0px 3px no-repeat #fff; color:#5A5A5A; font-size:13px; text-decoration:none; padding:0 0 0 12px;}
  19. #header ul li a:hover{background:url(images/navIcon_over.gif) 0px 3px no-repeat #fff; color:#DB7C02; text-decoration:none;}
  20.  
  21. /*---/NAV + LOGO + HEADER IMAGE---*/
  22.  
  23. /*---THREE COLUMNS---*/
  24. #threeColumns{width:760px; height:auto; position:relative; margin:0 auto;}
  25. #columnLeft h2, #columnMiddle h2, #columnRight h2{width:230px; height:25px; display:block; position:relative; top:-20px; left:0px; background:#fff; color:#db7c02; font:22px/25px Georgia, "Times New Roman", Times, serif; text-transform:capitalize;}
  26.  
  27. #columnLeft{width:30%; height:auto; float:left;}
  28. #columnMiddle{width:30%; height:auto; margin:0 35% 0 35%;}
  29. #columnRight{width:30%; height:auto; float:right;}
  30. #columnLeft p, #columnMiddle p, #columnRight p{padding:15px 0; text-align:justify;}
  31. #columnLeft p span, #columnMiddle p span, #columnRight p span{font-weight:bold;}
  32. #columnLeft p.more, #columnMiddle p.more, #columnRight p.more{z-index:1000; width:73px; height:26px; background:url(images/morebg.gif) 0 0 no-repeat; position:relative; bottom:0px; left:70%; padding:0px;}
  33. #columnLeft p.more a, #columnMiddle p.more a, #columnRight p.more a{display:block; width:48px; height:20px; background: url(images/arrow1.gif) 100% 50% no-repeat #fff; color:#DB7C02; font-size:13px; font-weight:bold; text-decoration:none; margin:3px 0 0 12px;}
  34. #columnLeft p.more a:hover, #columnMiddle p.more a:hover, #columnRight p.more a:hover{background: url(images/arrow2.gif) 100% 50% no-repeat #fff; color:#00487b; text-decoration:none;}
  35. /*---/THREE COLUMNS---*/
  36.  
  37. /*---FOOTER PANEL---*/
  38. #footer{height:110px; background-color:#00294A; clear:both; margin:30px 0 0 0;}
  39.  
  40. #footerSubNav{width:400px; height:100px; display:block; position:relative; margin:0 auto; color:#969BA1; font-family:Tahoma,Arial, Helvetica, sans-serif;}
  41. #footerSubNav p{padding:2px 0 0;}
  42. #footerSubNav p span{background:#1C1B19; color:#AC2626; font-size:10px;}
  43.  
  44. #footerSubNav ul{width:424px; display:block; position:absolute; left:20px; top:-12px; padding:0; }
  45. #footerSubNav li{float:left; font:13px/18px Arial, Helvetica, sans-serif; font-weight:normal;}
  46. #footerSubNav ul li a{padding:0 12px 0 12px; color:#969BA1; text-decoration:none;}
  47. #footerSubNav ul li a:hover{text-decoration:underline; color:#DB7C02;}
  48. #footerSubNav ul.info{width:424px; height:45px; display:block; position:absolute; left:20px; top:26px; padding:0;}
  49. #footerSubNav ul.info li{display:block; width:109px;}
  50. #footerSubNav ul.info li.address{width:150px; font-size:10px; font-family:Tahoma,Arial, Helvetica, sans-serif;  font-weight:bold; padding:0 0 0 12px;}
  51. #footerSubNav ul.info li.phone{width:80px; font-family:Tahoma,Arial, Helvetica, sans-serif; font-size:10px; padding:0 0 0 25px; font-weight:bold;}
  52. #footerSubNav ul.info li.fax{width:80px; font-size:10px; padding:0 0 0 15px; font-family:Tahoma,Arial, Helvetica, sans-serif; font-weight:bold;}
  53. #footerSubNav ul li span{ font-size:10px; font-weight:bold; line-height:18px;}
  54. /*---/FOOTER PANEL---*/
Nov 3 '07 #1
1 2110
Death Slaught
1,137 1GB
What's the problem your having?/What's not working the way you want it to?


Thanks, Death
Nov 13 '07 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

4
by: Simba | last post by:
In some pages of my website I use a code like the following: for (var n = 0; n < getTagsArray("SPAN").length; n++){ //SPAN is just an example. I also use other tags tag =...
6
by: NoCopy na | last post by:
Using the following example: domiframetest.html <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html...
17
by: Mark Rae | last post by:
Hi, I'm interested in your opinion concerning how far you would consider it necessary to code for cross-browser compatibility these days, especially for public-facing Internet sites... ...
2
by: Lüpher Cypher | last post by:
Does anyone know of good links about cross-browser compatibility (html attributes/css2/javascript)? -- - lüpher --------------------------------------------- "Man sieht nur das, was man...
7
by: dejavue82 | last post by:
Dear Asp.net users, I have seen some people comment that their asp.net websites render differently with various web browsers. Are they doing somthing wrong? In particilar, 1) I am wondering...
1
by: prof_martin | last post by:
Hi Everyone, I got question from Customer. What kind of browser and version which can browse properly if application running on ASP.net v.1.1 or 2.0 beside IE.5x above? Firefox, Nescape,...
15
by: CMM | last post by:
So I'm half way through overseeing a large project in ASP.NET 2.0. My superiors have decided that it would be nice if we ensured the site worked on all the major platforms (as they see it: IE,...
4
by: Maxwell2006 | last post by:
Hi, I am struggling with making my website compatible with multiple browsers and versions. Is there any tool that shows me how my pages look like in different browsers
2
by: dwair | last post by:
Hi, I have been having browser compatibility issues and was wondering if anyone could help. I have been using a JavaScript array to populate marker data using ASP JS in a google Maps project. For...
13
by: Jeff | last post by:
We have an intranet website that currently uses ActiveX but we need to make it cross-browser compatible and also get around the problems we've been having with making it work with IE7 and Vista. We...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.