473,379 Members | 1,252 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,379 software developers and data experts.

I'm doing something wrong, please Help.

Hi all,

I've been working on a simple two column layout for a site, but according to
browsershots.org, my desing is not showing up correctly in Win/IE 5.01, 5.5
& 6 !

Please see details here:
http://browsershots.org/screenshots/...ae00a03fcbbf9/
Please note that only IE7 got the design right.

What am I missing? Pages have a Strict XHTML DTD to use IE in standards
compliant mode, and I also included some conditional comments for IE6...
What else?

Any help would be _greatly_ appreciated!
Thanks in advance.
--
Posted via a free Usenet account from http://www.teranews.com

Jan 8 '07 #1
9 1721
Randy wrote:
>
I've been working on a simple two column layout for a site, but according to
browsershots.org, my desing is not showing up correctly in Win/IE 5.01, 5.5
& 6 !

What am I missing?
A URL

--
Berg
Jan 8 '07 #2
Randy wrote:
Hi all,

I've been working on a simple two column layout for a site, but according to
browsershots.org, my desing is not showing up correctly in Win/IE 5.01, 5.5
& 6 !

Please see details here:
http://browsershots.org/screenshots/...ae00a03fcbbf9/
Please note that only IE7 got the design right.

What am I missing? Pages have a Strict XHTML DTD to use IE in standards
compliant mode, and I also included some conditional comments for IE6...
What else?

Any help would be _greatly_ appreciated!
Thanks in advance.

Why can't I reply to this post?

--
John (confused)
Jan 8 '07 #3
Randy wrote:
Hi all,

I've been working on a simple two column layout for a site, but according to
browsershots.org, my desing is not showing up correctly in Win/IE 5.01, 5.5
& 6 !

Please see details here:
http://browsershots.org/screenshots/...ae00a03fcbbf9/
Please note that only IE7 got the design right.

What am I missing? Pages have a Strict XHTML DTD to use IE in standards
compliant mode, and I also included some conditional comments for IE6...
What else?
I looked at http://www.vinculando.org/arte/temple_mexico.html. I did not
study your code or CSS much, but I did see the mostly empty page in IE6.
The content appears briefly on load but then disappears. Everything
between (roughly) the google_ads and the footer is removed/hidden.

I think you'd be better off coding in HTML 4.01 Strict. You go to the
trouble of "XHTML 1.0 Strict", but then you serve it to all UAs as
Content- Type: text/html; charset=utf-8. Also, you have a validation
error, so I suspect you didn't try to validate.

This all suggests that you are not using XHTML for a sound reason, as
you are getting no benefit from it, and are only having problems.

Maybe you should read
http://www.456bereastreet.com/archiv...html_properly/
or http://www.hixie.ch/advocacy/xhtml ?

HTH
--
John
Jan 8 '07 #4
John Hosking wrote:
Why can't I reply to this post?
Okay folks, sorry about that; my real reply actually got posted. I was
having trouble with this >Content-Type: text/html; charset=utf-8< in it
(I guess) but when I slipped a space in there, it worked.

--
John (a bit wiser, but still confused)
Jan 8 '07 #5
Thanks for your time John,

but even though I've changed to HTML 4.01, and validated one page, it still
apprears to have the same problem. Are there any other ideas? Could it be
something wrong in the CSS itself?

Berg, try this:
http://www.vinculando.org/brasil/voto_hh_nao_pt.html
On 1/8/07 10:36 AM, John Hosking wrote 45**********@news.bluewin.ch:
I think you'd be better off coding in HTML 4.01 Strict. You go to the
trouble of "XHTML 1.0 Strict", but then you serve it to all UAs as
Content- Type: text/html; charset=utf-8. Also, you have a validation
error, so I suspect you didn't try to validate.

This all suggests that you are not using XHTML for a sound reason, as
you are getting no benefit from it, and are only having problems.

--
Posted via a free Usenet account from http://www.teranews.com

Jan 8 '07 #6
Randy wrote:
but even though I've changed to HTML 4.01, and validated one page, it still
apprears to have the same problem. Are there any other ideas? Could it be
something wrong in the CSS itself?

Berg, try this:
http://www.vinculando.org/brasil/voto_hh_nao_pt.html
With some minimal testing, it seems to work if you remove all of the
position: relative and position: absolute from the style sheet.
There really shouldn't be any need for those.

Try to make a much smaller test case if that doesn't solve it. There is
a lot of CSS there to use as a test.

--
-bts
-Motorcycles defy gravity; cars just suck
Jan 8 '07 #7
Beauregard,

Thanks a lot, that worked out very well on all browsers!

Best regards to all :)

W.

>
With some minimal testing, it seems to work if you remove all of the
position: relative and position: absolute from the style sheet.
There really shouldn't be any need for those.

Try to make a much smaller test case if that doesn't solve it. There is
a lot of CSS there to use as a test.


--
Posted via a free Usenet account from http://www.teranews.com

Jan 8 '07 #8
Randy wrote:
Beauregard,

Thanks a lot, that worked out very well on all browsers!
Whoohoo. I had a similar problem years ago, with IE6, and removing
absolute (and relative) positioning cured that. I think it is a rare
case where they are needed.
Best regards to all :)
To you as well.

--
-bts
-Motorcycles defy gravity; cars just suck
Jan 8 '07 #9
Beauregard,

Just one last thing: I only removed position:relative lines and then
everything was ok. It seems that position:absolute had no connection with
the problem in this case ;)

Thanks again for your time.
>
Whoohoo. I had a similar problem years ago, with IE6, and removing
absolute (and relative) positioning cured that. I think it is a rare
case where they are needed.
>Best regards to all :)

To you as well.


--
Posted via a free Usenet account from http://www.teranews.com

Jan 9 '07 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Graham Mattingley | last post by:
I am trying to count the records in a database, and make an array from the answer this is the code strQuery = "SELECT count(*) FROM resort where island_id= '"&island_drop&"' ;" Set...
6
by: What-a-Tool | last post by:
I'm going out out of my mind trying to get this to work with no luck. The error message I get is at the bottom. Can someone please tell me what I'm doing wrong here. I've tried this a million...
17
by: Newbie | last post by:
Dear friends, I am having a hard time understanding how to use a SELECT CASE in ASP. I have used it in VB but never in ASP scripting. Scenerio: I have 2 textboxes on a form that I have to...
1
by: Chiller | last post by:
Ok, I've implemented a few changes to the code and the bool functions now seem to be functioning correctly; however, I think I'm doing the convertions incorrectly because the values printed out...
5
by: Stephan Gehrlein | last post by:
What do I have to do to get help from other newsgroup members? Whenever I try to get help from the NG I never get results... If I do something wrong, please tell me about it! Stephan
1
by: MikeY | last post by:
Hiya all, I am developing a windows form application. I am coding in C#. What I have is two forms/Classes, frmMain & frmAdd. In frmMain I have initialize & instantiated my variable as "public...
5
by: Simon Brooke | last post by:
This is supposed to be a very simple XSL stylesheet to strip styling information out of HTML documents - it could not be more basic. And yet, it doesn't work. I'm obviously getting something very...
16
by: SirG | last post by:
I'm looking for an explanation of why one piece of code works and another does not. I have to warn you that this is the first piece of Javascript I've ever written, so if there is a better way or a...
10
by: shapper | last post by:
Hello, I have a custom control under namespace MyNameSpace.WebControls with a property of type validation: ' Validation Private _Validation As Validation < _ Bindable(True), _...
0
by: Pat | last post by:
Hi Guys, Please help me. I am having a strange issue. Not sure if I am doing something wrong or this is a bug. This is a sample code. This contains 2 text boxes(txtName, txtPhone) and 2 buttons...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

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.