473,503 Members | 2,322 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Why are we experiencing a table sizing issue with set pixel widths?

http://tinyurl.com/5z4yo4

When viewing this page in Internet Explorer for the first time the
outer most table is much wider than it should be and then slowly
resizes to the correct size as images are loaded. It's impossible for
us to set the dimensions of the product images as they are unknown to
the e-commerce software which generates these pages. The pages display
in Firefox perfectly.

What can we do to correct this?
Jun 27 '08 #1
6 1535
In article
<c3**********************************@a70g2000hsh. googlegroups.com>,
ITistic <sh***@itistic.comwrote:
http://tinyurl.com/5z4yo4

When viewing this page in Internet Explorer for the first time the
outer most table is much wider than it should be and then slowly
resizes to the correct size as images are loaded. It's impossible for
us to set the dimensions of the product images as they are unknown to
the e-commerce software which generates these pages. The pages display
in Firefox perfectly.

What can we do to correct this?
First thing to do is to correct the "Failed validation, 153 Errors" at
http://validator.w3.org/

--
dorayme
Jun 27 '08 #2
On 05/21/08 12:48 pm, ITistic wrote:
http://tinyurl.com/5z4yo4

When viewing this page in Internet Explorer for the first time the
outer most table is much wider than it should be and then slowly
resizes to the correct size as images are loaded. It's impossible for
us to set the dimensions of the product images as they are unknown to
the e-commerce software which generates these pages. The pages display
in Firefox perfectly.

What can we do to correct this?
Provide the width of the images. How do you get the images?
Do you have some sort of server-side application that generates the
(godawful) HTML code? If so, use that application's services to query the
image size.

The site has worse problems than twitchy tables. The layout is extremely
fragile. Even slightly increasing the text size causes rapid degradation
of the display.
The text size is set to 11px, 68% of my preferred size (16px). I have a
minimum font size of 13px (which I find barely readable) and the first
impression of your site was "Yuck!" because the layout fell apart.
Then there are all of the validation errors.... For instance, mixing
HTML and XHTML syntax is inexcusably sloppy.

--
jmm (hyphen) list (at) sohnen-moe (dot) com
(Remove .AXSPAMGN for email)
Jun 27 '08 #3
On May 22, 1:12 am, Jim Moe <jmm-list.AXSPA...@sohnen-moe.comwrote:
On 05/21/08 12:48 pm, ITistic wrote:
http://tinyurl.com/5z4yo4
When viewing this page in Internet Explorer for the first time the
outer most table is much wider than it should be and then slowly
resizes to the correct size as images are loaded. It's impossible for
us to set the dimensions of the product images as they are unknown to
the e-commerce software which generates these pages. The pages display
in Firefox perfectly.
What can we do to correct this?

Provide the width of the images. How do you get the images?
Do you have some sort of server-side application that generates the
(godawful) HTML code? If so, use that application's services to query the
image size.

The site has worse problems than twitchy tables. The layout is extremely
fragile. Even slightly increasing the text size causes rapid degradation
of the display.
The text size is set to 11px, 68% of my preferred size (16px). I have a
minimum font size of 13px (which I find barely readable) and the first
impression of your site was "Yuck!" because the layout fell apart.
Then there are all of the validation errors.... For instance, mixing
HTML and XHTML syntax is inexcusably sloppy.

--
jmm (hyphen) list (at) sohnen-moe (dot) com
(Remove .AXSPAMGN for email)
The images are uploaded through a piece of software which does not
store the image dimensions. I'd rather not have to programatically
open each image to determine it's dimensions before serving as that
would put a heavy load on the server. I just thought it'd be possible
to somehow tell IE not to render them so big initially before they
were downloaded. You'd think it's render them smaller before it knew,
not bigger. Firefox does exactly that.
Jun 27 '08 #4
On 05/22/08 09:01 am, ITistic wrote:
>>
Provide the width of the images. How do you get the images?
Do you have some sort of server-side application that generates the
(godawful) HTML code? If so, use that application's services to query the
image size.
The images are uploaded through a piece of software which does not
store the image dimensions. I'd rather not have to programatically
open each image to determine it's dimensions before serving as that
would put a heavy load on the server. I just thought it'd be possible
to somehow tell IE not to render them so big initially before they
were downloaded. You'd think it's render them smaller before it knew,
not bigger. Firefox does exactly that.
You'll have to ask MS about IE's odd behavior. Since MS made no changes
to the HTML or CSS aspects of IE6 for 5 years, your only hope is that it
is not a problem in IE7. Or IE8.
Or query the image file for its width and add it to the <imgelement's
attributes. Have you run any benchmarks to determine what the server load
might be? Or you could cache the image sizes for lookup later.

--
jmm (hyphen) list (at) sohnen-moe (dot) com
(Remove .AXSPAMGN for email)
Jun 27 '08 #5
On May 21, 2:48 pm, ITistic <sh...@itistic.comwrote:
http://tinyurl.com/5z4yo4

When viewing this page in Internet Explorer for the first time the
outer most table is much wider than it should be and then slowly
resizes to the correct size as images are loaded. It's impossible for
us to set the dimensions of the product images as they are unknown to
the e-commerce software which generates these pages. The pages display
in Firefox perfectly.

What can we do to correct this?
Along with the validation errors, the page is built with a bad mix of
nested tables for layout with a little bit of convoluted CSS thrown
in. Table widths and table cell widths (td's) are defined both inline
in the HTML and in the CSS. This should really be cleaned up.

Since it appears the table resizing only happens in IE, I'd guess it
has to do with how IE handles the CSS box model or that IE doesn't
regard max-width in CSS without some workarounds.
Jun 27 '08 #6
On May 21, 2:48 pm, ITistic <sh...@itistic.comwrote:
http://tinyurl.com/5z4yo4

When viewing this page in Internet Explorer for the first time the
outer most table is much wider than it should be and then slowly
resizes to the correct size as images are loaded. It's impossible for
us to set the dimensions of the product images as they are unknown to
the e-commerce software which generates these pages. The pages display
in Firefox perfectly.

What can we do to correct this?
Along with the validation errors, the page is built with a bad mix of
nested tables for layout with a little bit of convoluted CSS thrown
in. Table widths and table cell widths (td's) are defined both inline
in the HTML and in the CSS. This should really be cleaned up.

Since it appears the table resizing only happens in IE, I'd guess it
has to do with how IE handles the CSS box model or that IE doesn't
regard max-width in CSS without some workarounds.
Jun 27 '08 #7

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

Similar topics

5
2023
by: Olav Tollefsen | last post by:
Take a look at this page: http://www.webinnovation.no/test/test.htm Why is the left table with the text "Menu" not 160 pixels as stated in the HTML code? Olav
47
9077
by: Neal | last post by:
Patrick Griffiths weighs in on the CSS vs table layout debate in his blog entry "Tables my ass" - http://www.htmldog.com/ptg/archives/000049.php . A quite good article.
19
17329
by: CMAR | last post by:
I have the following markup. The problem is that the browser, e.g., IE6, inserts several lines of blank space between the <div> and the following table. Is there a way to minimize that vertical...
0
2616
by: TJ Talluto | last post by:
<facts> I have a "month calendar" that always displays exactly 42 days... and alongside is a vertical box that displays the detail (form fields) of any particular select event that appears on the...
4
26200
by: N. Demos | last post by:
The following code renders as intended in IE (A TABLE, with cells of fixed width and height, inside of a DIV with fixed width and height and overflow set to hidden.) In Firefox, the table cells...
3
5896
by: N. Demos | last post by:
I have a single row table with fixed dimensioned cells nested inside a fixed dimensioned div, which has overflow: hidden. The div's dimensions are such that It should only display the first two...
1
4903
by: Veerle | last post by:
Hi, I have 2 div blocks with each div taking up half of the page width. So in the CSS they both have width: 50%. See http://home.scarlet.be/~vv991306/leftright.html In Mozilla Firefox and...
117
18410
by: phil-news-nospam | last post by:
Is there really any advantage to using DIV elements with float style properies, vs. the old method of TABLE and TR and TD? I'm finding that by using DIV, it still involves the same number of...
6
1555
by: ITistic | last post by:
http://tinyurl.com/5z4yo4 When viewing this page in Internet Explorer for the first time the outer most table is much wider than it should be and then slowly resizes to the correct size as...
0
7207
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
7093
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
5598
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,...
1
5023
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...
0
4690
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3180
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
1522
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
748
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
402
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.