473,666 Members | 2,357 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Page Check/Assistance - IE only

Anyone up for a challenge? If you have some time to spare and don't
mind helping someone who is in the dark, I have some questions related
to an IE-only page layout.

Note that this page is part of an internal site for users with IE5.5+
only (I know, I know...). So, I am well aware that it falls apart in
Mozilla, etc. My questions are strictly related to the page as viewed
in IE.

The goal is for all columns to align, but this may not be possible
with the current cobbled-together code. We may add additional columns
in the future, but this is the form for now. Suggestions for
improvement are welcome.

My questions are as follows:

* Is there a way to have the scroll box appear the same width as the
Set Defaults and Owner/Operators areas and still have all columns
align? I'm sure this is something obvious I've missed.

* There appears to be some extra space between the MI column and the
Local column, but I'm not sure why. Is there a way to "close the gap"?

* In my printed version of the form, I'd like the longer field names
(such as Last Name) to display all characters. For example, I only
display 10 characters on screen but allow up to 30 characters as part
of input. Is there a way to expand the column just in the printed
version?

In addition, I'm sure things can be cleaned up (CSS-wise), so any
suggestions here are greatly appreciated.

My test page is up at http://www.icius.com/testpage/testform.html

The css is at http://www.icius.com/testpage/ERFmain.css

Thanks in advance for any assistance.

Nancy
Jul 20 '05 #1
20 2286
In article <63************ **************@ posting.google. com>,
ye************* @hotmail.com enlightened us with...

In addition, I'm sure things can be cleaned up (CSS-wise), so any
suggestions here are greatly appreciated.

My test page is up at http://www.icius.com/testpage/testform.html

The css is at http://www.icius.com/testpage/ERFmain.css


I'm looking at it, but my first suggestion is that your users are screwed if
they need to increase the font size or use the more common 800 by 600
resolution. You're using absolute font sizes, which won't resize, and my
bottom scrollbar isn't showing up.
This page doesn't come close to meeting the Americans With Disabilities
guidelines.

--
--
~kaeli~
A chicken crossing the road is poultry in motion.
http://www.ipwebdesign.net/wildAtHeart
http://www.ipwebdesign.net/kaelisSpace

Jul 20 '05 #2
In article <63************ **************@ posting.google. com>,
ye************* @hotmail.com enlightened us with...

* Is there a way to have the scroll box appear the same width as the
Set Defaults and Owner/Operators areas and still have all columns
align? I'm sure this is something obvious I've missed.

Put it in the same table the others are in.
The two others are in a table. That one isn't in there.

</tr>
<!-- end of table heading row -->
</table>
<div class="scroll">

That's the easy solution.
There's probably a complicated CSS solution. *g*
* There appears to be some extra space between the MI column and the
Local column, but I'm not sure why. Is there a way to "close the gap"?

See above. That might fix it. It doesn't look like you meant for that div to
be outside the table.
--
--
~kaeli~
Is it true that cannibals don't eat clowns because they
taste funny?
http://www.ipwebdesign.net/wildAtHeart
http://www.ipwebdesign.net/kaelisSpace

Jul 20 '05 #3
Hi Kaeli,

Thanks for taking a look. Yeah, one of the items on my list of "needed
improvements" is to size the text using ems to deal with the broken
IE/Win text resizing issues.

I'll keep plugging away...

kaeli <ti******@NOSPA M.comcast.net> wrote in message news:<MP******* *************** **@nntp.lucent. com>...
I'm looking at it, but my first suggestion is that your users are screwed if
they need to increase the font size or use the more common 800 by 600
resolution. You're using absolute font sizes, which won't resize, and my
bottom scrollbar isn't showing up.
This page doesn't come close to meeting the Americans With Disabilities
guidelines.

--

Jul 20 '05 #4
In article <63************ **************@ posting.google. com>,
ye************* @hotmail.com enlightened us with...
Hi Kaeli,

Thanks for taking a look. Yeah, one of the items on my list of "needed
improvements" is to size the text using ems to deal with the broken
IE/Win text resizing issues.


I have found that the best sizing is with percents, not ems.
I forget exactly why. *embarrassed grin*

Oh, one more hint for you - event handlers don't need the "javascript " in
front.
onClick="javasc ript:someFuncti on()"
^^^^^^^^^^^
not needed
onClick="someFu nction()"

Handlers are inherently script. Unless you're using a script other than
javascript (IE only), in which case you could do
onClick="vbscri pt:someSub"

The only time the javascript pseudoprotocol is needed is in things other than
handlers, such as links
i.e. <a href="javascrip t:mailto:me@myA ddy.com">mail me!</a>
(the above not recommended for general internet use for a variety of reasons,
but is fine for IE-only intranet stuff)
HTH

--
--
~kaeli~
Any sufficiently advanced technology is indistinguishab le
from magic.
http://www.ipwebdesign.net/wildAtHeart
http://www.ipwebdesign.net/kaelisSpace

Jul 20 '05 #5
On Wed, 25 Aug 2004 08:07:08 -0500, kaeli wrote:
I have found that the best sizing is with percents, not ems.
I forget exactly why.


AFAIU, some UA's will cascade an 'em' size of
..9 recursively, making sub-elements .9 of .9,
etc. OTOH, specifying sizes in '%' does not
trigger this same error. (..AFAIU)

--
Andrew Thompson
http://www.PhySci.org/ Open-source software suite
http://www.PhySci.org/codes/ Web & IT Help
http://www.1point1C.org/ Science & Technology
Jul 20 '05 #6
On Wed, 25 Aug 2004 18:37:08 GMT, Andrew Thompson <Se********@www .invalid>
wrote:
On Wed, 25 Aug 2004 08:07:08 -0500, kaeli wrote:
I have found that the best sizing is with percents, not ems.
I forget exactly why.


AFAIU, some UA's will cascade an 'em' size of
.9 recursively, making sub-elements .9 of .9,
etc. OTOH, specifying sizes in '%' does not
trigger this same error. (..AFAIU)


That's not an error, it's on purpose, and it occurs with % as well.

Ems and % are fine except when you set body {font-size: 1em;} some
browsers won't allow resizing. Using body {font-size:100%} allows
enlargement of text.
Jul 20 '05 #7
On Wed, 25 Aug 2004 14:44:22 -0400, Neal <ne*****@yahoo. com> wrote:
AFAIU, some UA's will cascade an 'em' size of
.9 recursively, making sub-elements .9 of .9,
etc. OTOH, specifying sizes in '%' does not
trigger this same error. (..AFAIU)


That's not an error, it's on purpose, and it occurs with % as well.


Here's the reference: http://www.w3.org/TR/CSS2/cascade.html#computed-value
Jul 20 '05 #8
Neal wrote:

Ems and % are fine except when you set body {font-size: 1em;} some
browsers won't allow resizing.
No, the problem with ems is specific to WinIE - it has a bug that causes
bizarre scaling at any View->Text Size setting other than "Medium". So
1em at Text Size "Largest" is enormous, at "Smallest" it's just dots
across the screen - totally out of proportion.
Using body {font-size:100%} allows enlargement of text.


This is actually the work-around for em scaling problems with WinIE.
Other than that, em and % units are interchangeable where font-size is
concerned.

But why bother with multiple units? Just use % and you're good to go.

--
Reply email address is a bottomless spam bucket.
Please reply to the group so everyone can share.
Jul 20 '05 #9
On Wed, 25 Aug 2004 15:52:59 -0500, kchayka <us****@c-net.us> wrote:
Neal wrote:
some
browsers won't allow resizing.


No, the problem with ems is specific to WinIE


I can't tell if your objection was with 'some" or "browsers". I can see an
argument for both. :)
Jul 20 '05 #10

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

Similar topics

4
4016
by: George Stout | last post by:
First off I do not know alot about writing queries to an Access Database from an ASP page. This is why I need help. I have an Events database for 6 colleges in our metro area. On the homepage I have to display the next event for each college. That would give me 6 events listed on the page. I have been trying to figure out how to write a query statement in my ASP page to select just the most current event from each college. I have not had...
4
2869
by: Ben | last post by:
I have a page for my company that I need assistance with: http://www.eastex.net/ben/NewETN/subPage.htm When you resize the window (NS or IE) small enough that you have to scroll horizontally (because of logo image), scrolling right breaks the layout. I'm using 100% div widths, and these apparently don't reset when scrolling. I tried using a min-width and IE hack for min-width ( width:expression(document.body.clientWidth < 550 ? "450px"...
1
8817
by: Bob Erwin | last post by:
Hey, I have an interesting problem that I need some assistance for... It is my understanding that when you click a button on an ASP.NET page, it will actually run the page load first and then run my button procedure. Is there a way, that I can check to see if the button was clicked in the *page load* before the code ever gets to my button procedure? Mainly, I have some dynamic textboxes that I need to reset if a person
9
2277
by: Daniel Walzenbach | last post by:
Hi I am faced with the following problem: I have a page (let’s call this page page1.aspx) containing some TextBoxes and a hyperlink which opens another page (let’s call this page page2.aspx) as a popup using either window.open or window.showModalDialog. Since I want to warn the users of my application when they try to close page1.aspx and have changed the values in the meantime I thought about using the “onbeforeunload” event of the...
3
1242
by: TJS | last post by:
how to extract page name from URL?
10
2211
by: KeithRaginF | last post by:
Hello I am trying to return the contents of an Excel file. However, I don't want to just redirect the request to the Excel file since it does not reside in a location where that is appropriate. I am trying to write the contents of the file to the response but am having trouble. My code resides in the handler for a link-button's click event Response.ClearHeaders() Response.ClearContent() Response.ContentType =...
5
2524
by: Jim Heavey | last post by:
When should you use the Page.Validate() method? I thought you would use this method if you have some Server side validation (CustomControl's) you wanted to use and this would cause them to be invoked. I am probably wrong about that. If I am suppose to use this function, the edits seemed to be invoked even when you have pressed the cancel and the "CausesValidation" is set to false. Is there a way to get around this (might just be an...
0
1038
by: shizah | last post by:
First of all thanks alot for ur response. Let me clear my point again to u so that u can suggest me a better advice. Well sir u r very much right in this contrast that it can be implemented in my pc. Look only i m anaware of this thing to write text into the text box with shift+alt key. A normal user is unaware of it. if I upload pages into my remote domain. There how a person who has not installed arabic in his pc is able to enter arabic....
5
5893
by: =?Utf-8?B?U3RldmVuIFRhbmc=?= | last post by:
It seems that one page XBAP whose Unloaded event never get called, I need put some clearing stuff (I.G stop dispatcher time) when user close browser, it unload event doesn't work, where shall I put? -- ======================= Steven Tang SYWWUYU)
0
8440
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, well explore What is ONU, What Is Router, ONU & Routers main usage, and What is the difference between ONU and Router. Lets take a closer look ! Part I. Meaning of...
0
8780
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...
0
8636
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...
0
7378
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 projectplanning, coding, testing, and deploymentwithout human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6189
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
5661
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
4192
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 last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2765
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
1763
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.