HighDots Forums  

HTML Frame Lock?

HTML Writing HTML for the Web (comp.infosystems.www.authoring.html)


Discuss HTML Frame Lock? in the HTML forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
xmp333@yahoo.com
 
Posts: n/a

Default HTML Frame Lock? - 08-08-2003 , 04:46 PM






Hi,


I know the noresize attribute will keep the user from resizing a
frame, but is there a way to keep a frame from being resized by the
browser (in response to things like different layouts/sizes on the
page)?

Basically I want my frame sizes to remain fixed no matter what
happens.


Thanks!
Ahmed

Reply With Quote
  #2  
Old   
Alan J. Flavell
 
Posts: n/a

Default Re: HTML Frame Lock? - 08-08-2003 , 05:24 PM






On Fri, Aug 8, xmp333 (AT) yahoo (DOT) com inscribed on the eternal scroll:

Quote:
Basically I want my frame sizes to remain fixed no matter what
happens.
Perhaps we should send you to the stores for a long stand.



Reply With Quote
  #3  
Old   
Barbara de Zoete
 
Posts: n/a

Default Re: HTML Frame Lock? - 08-09-2003 , 04:31 AM



Quote:
xmp333 (AT) yahoo (DOT) com wrote:
Basically I want my frame sizes to remain fixed no matter what
happens.
Try publishing on paper. Problem solved.

--
Barbara

http://home.wanadoo.nl/b.de.zoete/index.html




Reply With Quote
  #4  
Old   
Sam Hughes
 
Posts: n/a

Default Re: HTML Frame Lock? - 08-10-2003 , 06:04 PM



xmp333 (AT) yahoo (DOT) com wrote in news:4a0da86b.0308081246.1cba1859
@posting.google.com:

Quote:
Hi,

I know the noresize attribute will keep the user from resizing a
frame, but is there a way to keep a frame from being resized by the
browser (in response to things like different layouts/sizes on the
page)?

Basically I want my frame sizes to remain fixed no matter what
happens.
That is a stupid idea. Do you really need frames?

Do your visitors also want your frame sizes to remain fixed?

What are you using them for?

If you are using frames for page layout purposes and you want the frame
non-resizable in order to keep your design intact, then you are using
frames for the wrong reason. The best solution would be to stop using
them. Don't have your page's layout so rigid. Remember, the World Wide
Web is the land of flexibility.

There are not many situations where frames benefit the user. The only
ones that I can think of off the top of my head are Google Groups (an
exceptionally good use of frames there), other uses of them in caching or
searching for images, and in web mail applications. (However, frames are
not necessarily beneficial in web mail; the best web mail user interface
I have seen is fastmail.fm's, which does not use frames.)

You can also use frames in a manner that benefits the user, if you also
do the following steps:

(1) Use it for a reason other than a menu on the left hand side of your
site.

(2) Allow the user to move their frame borders around.

(3) Allow the user to go without frames, to remove the frame and still
have the web site be fully functional.

(4) Provide <noframes> content for users who have their browsers set not
to use frames. They do exist, in larger numbers than you would expect.
(Think about users with mobile devices).

(5) Make sure that the user does not need to "jump through any hoops to
use your web site.

Many people think of the World Wide Web as a collection of web sites,
which have pages with links that point within the site and to other
sites. I think, however, that it is a good idea to look at the Web as
not a collection of web sites, but rather, a collection of individual web
pages. With most web sites, most people who visit will be looking for
information that is found on one specific page, or an article split up
into multiple files, rather than an entire site. Using frames
discourages this model of the World Wide Web, and it does not make
users' lives any easier.


Reply With Quote
  #5  
Old   
xmp333@yahoo.com
 
Posts: n/a

Default Re: HTML Frame Lock? - 08-11-2003 , 09:59 AM



Quote:
Basically I want my frame sizes to remain fixed no matter what
happens.

Doesn't using a fixed size in
frameset rows/cols
not work for you??

No it doesn't. The frame comes up in the proper size, but sometimes
it gets resized by the browser.


Reply With Quote
  #6  
Old   
xmp333@yahoo.com
 
Posts: n/a

Default Re: HTML Frame Lock? - 08-11-2003 , 10:12 AM



Quote:
Basically I want my frame sizes to remain fixed no matter what
happens.

That is a stupid idea. Do you really need frames?

Do your visitors also want your frame sizes to remain fixed?
This is what my employer wants, so it is my job to implement it
whether or not it is a good idea. I wouldn't mind abandoning frames;
I don't like frames. While they allow us to save on redundant coding
(we are using them for a menu), there are other ways to do this (I'm
thinking php).

We expect most of our visitors to be clients who are looking for
support, and as such we feel that they won't be picky about the layout
of the web site, as long as it is intuitive.



Quote:
What are you using them for?
A left hand menu.



Quote:
You can also use frames in a manner that benefits the user, if you also
do the following steps:

(1) Use it for a reason other than a menu on the left hand side of your
site.
At this point I am considering alternatives to this. We have
collapsible menus, so there are a few options, but none of them are
terribly appealing. Java and JavaScript aren't viable alternatives
since people can up their security and effectively kill our means of
navigation, yet some level of dynamism would be nice. Again, I'm
strongly leaning towards php, but unless this gets approved I will
still need to find a way to lock the frames.



Quote:
(3) Allow the user to go without frames, to remove the frame and still
have the web site be fully functional.

(4) Provide <noframes> content for users who have their browsers set not
to use frames. They do exist, in larger numbers than you would expect.
(Think about users with mobile devices).
This isn't a concern at all since we believe all our users will be on
frames capable browsers. We don't know of any users who are on mobile
devices. This is such a non-consideration that we have never had a
<noframes> content, nor do we intend to implement one as far as I
know.



Quote:
(5) Make sure that the user does not need to "jump through any hoops to
use your web site.
Knowing our platforms, we don't see this as an issue. We also see the
people who visit our web site as needing our services, so even if they
have to jump hoops, they will do so.



Quote:
Many people think of the World Wide Web as a collection of web sites,
which have pages with links that point within the site and to other
sites. I think, however, that it is a good idea to look at the Web as
not a collection of web sites, but rather, a collection of individual web
pages. With most web sites, most people who visit will be looking for
information that is found on one specific page, or an article split up
into multiple files, rather than an entire site. Using frames
discourages this model of the World Wide Web, and it does not make
users' lives any easier.
Could you elaborate on this please?

Also, am I to take it that there is no way to lock the frame size?
Until such a time as I can convince management to approve a different
design for the site, I will have to try to lock the frames.


Thanks.


Reply With Quote
  #7  
Old   
Chris Morris
 
Posts: n/a

Default Re: HTML Frame Lock? - 08-11-2003 , 10:42 AM



xmp333 (AT) yahoo (DOT) com writes:
Quote:
That is a stupid idea. Do you really need frames?

Do your visitors also want your frame sizes to remain fixed?

This is what my employer wants, so it is my job to implement it
whether or not it is a good idea. I wouldn't mind abandoning frames;
I don't like frames. While they allow us to save on redundant coding
(we are using them for a menu), there are other ways to do this (I'm
thinking php).
What about a preprocessor?
http://www.allmyfaqs.com/faq.pl?Incl...ile_in_another
lists four preprocessors, which might be enough for your needs if
there's a problem with security or server load from PHP.

Quote:
We expect most of our visitors to be clients who are looking for
support, and as such we feel that they won't be picky about the layout
of the web site, as long as it is intuitive.
Indeed. Having a frame too small for their needs would be
unintuitive, though?

It seems safe to assume that visitors wanting to resize the frames
will have good reason to do so, and other visitors won't. If you
don't think people will be picky about the layout, why be so concerned
about getting it to a particular exact setup?

Quote:
(4) Provide <noframes> content for users who have their browsers set not
to use frames. They do exist, in larger numbers than you would expect.
(Think about users with mobile devices).

This isn't a concern at all since we believe all our users will be on
frames capable browsers. We don't know of any users who are on mobile
Search engines aren't frames-capable. Your users may need to find the
site first.

Quote:
devices. This is such a non-consideration that we have never had a
noframes> content, nor do we intend to implement one as far as I
know.
You may believe all your users to be on frames-capable browsers - the
danger is that this will become self-fulfilling. You may also be in
breach of local anti-discrimination legislation by not providing
adequate alternatives to framed content.

Quote:
(5) Make sure that the user does not need to "jump through any hoops to
use your web site.

Knowing our platforms, we don't see this as an issue. We also see the
people who visit our web site as needing our services, so even if they
have to jump hoops, they will do so.
Yes, but having been made to jump through hoops, will they recommend
you to others, or will they say "reasonable company, but their
website's a nightmare to use - try XXX instead".

Quote:
Also, am I to take it that there is no way to lock the frame size?
Until such a time as I can convince management to approve a different
design for the site, I will have to try to lock the frames.
There is no reliable way to lock frame size. Any decent browser will
have an option to overrule any locking you do.

--
Chris


Reply With Quote
  #8  
Old   
xmp333@yahoo.com
 
Posts: n/a

Default Re: HTML Frame Lock? - 08-12-2003 , 12:29 PM



Quote:
What about a preprocessor?
http://www.allmyfaqs.com/faq.pl?Incl...ile_in_another
lists four preprocessors, which might be enough for your needs if
there's a problem with security or server load from PHP.
That's what I was going to use PHP for. Even now we have some
standardized content that is preprocessed using PHP (on a workstation)
before being uploaded. This doesn't require server support nor does
it take any processing time. It has worked very well in the past and
so it is definitely near the top for the future. It also has the
added benefit of being easy for casual users to use; we have people
with no html coding experience (nor are they saavy computer users) who
generate web content this way and upload it on a regular basis.



Quote:
We expect most of our visitors to be clients who are looking for
support, and as such we feel that they won't be picky about the layout
of the web site, as long as it is intuitive.

Indeed. Having a frame too small for their needs would be
unintuitive, though?
Sort of. I think part of the text would be clipped, but the general
idea would still be intact.



Quote:
It seems safe to assume that visitors wanting to resize the frames
will have good reason to do so, and other visitors won't. If you
don't think people will be picky about the layout, why be so concerned
about getting it to a particular exact setup?
I think management doesn't like the way resizing looks. When the
frames change visibly in front of their eyes when they click on a
link, it looks unprofessional to them.


Quote:
This isn't a concern at all since we believe all our users will be on
frames capable browsers. We don't know of any users who are on mobile

Search engines aren't frames-capable. Your users may need to find the
site first.
Actually, the model we are operating on is one in which the users will
know our web site. While they can find us via search engines, the
VAST majority (if not all) will know us or get our site directly via
technical support.



Quote:
devices. This is such a non-consideration that we have never had a
noframes> content, nor do we intend to implement one as far as I
know.

You may believe all your users to be on frames-capable browsers - the
danger is that this will become self-fulfilling. You may also be in
breach of local anti-discrimination legislation by not providing
adequate alternatives to framed content.
This may be true, but since this is the operating principle for us,
these are the parameters that I am going to work within. Given the
nature of our business and the role of our web site, I feel confident
in saying that our mobile client base is negligible at best.



Quote:
Knowing our platforms, we don't see this as an issue. We also see the
people who visit our web site as needing our services, so even if they
have to jump hoops, they will do so.

Yes, but having been made to jump through hoops, will they recommend
you to others, or will they say "reasonable company, but their
website's a nightmare to use - try XXX instead".
That's the thing, the web site exists as a support tool -- it does not
exist for its own sake. The users will be our clients and given the
nature of this business, they won't go elsewhere if they don't like
our web site. Furthermore, a very large number would go to our web
site for tech support purposes, which means that a technical support
person will be online guiding them through the process.



Quote:
Also, am I to take it that there is no way to lock the frame size?
Until such a time as I can convince management to approve a different
design for the site, I will have to try to lock the frames.

There is no reliable way to lock frame size. Any decent browser will
have an option to overrule any locking you do.

Thanks -- that answers my question.



Thanks.


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.