473,659 Members | 3,592 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 1542
In article
<c3************ *************** *******@a70g200 0hsh.googlegrou ps.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...@s ohnen-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
2028
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
9127
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
17431
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 spacing? Thanks, CMA <div class="vlgray">Condition</div> <table cellpadding="0" cellspacing="0">
0
2622
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 calendar, so that the event may be changed, or a new event may be created. monthname X X X X X X X form X X X X X X X form X X X X X X X form
4
26206
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 assume a narrower with than specified. If I comment out the width for the DIV, then the cells render with the correct width and height. Why is this happening? Thanks. Regards, N. Demos
3
5899
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 table cells. This all renders correctly in MSIE 6.x, but doesn't in Firefox. In Firefox, the cell widths are reduced so that all the cells are displayed within the div frame. I've played around with this: commenting out css properties to see if...
1
4912
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 Opera, depending on the width of the browser window, sometimes there is a 1 pixel gap between the 2 div blocks. In Internet Explorer, this is never the case.
117
18497
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 elements in the HTML to get everything just right. When you consider the class attribute on the DIV elements, there's not much size savings anymore for using DIV. There are other disadvantages to not using TABLE/TR/TD, such as the lack of ability...
6
1561
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 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?
0
8337
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8748
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8531
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8628
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6181
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5650
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 then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4335
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2754
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 we have to send another system
2
1739
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 can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.