473,721 Members | 2,259 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Link indicator to off-site pages

TC
I'm looking for opinions on ways to show visitors, your links will send
them off-site (to another website). The following was suggested:

Look at the three links under the third paragraph:
http://www.countryrode.com/sales/vespaline.php
Note the tooltip when hovering the graphic as well.

Personally, I have not seen these. Are they really needed? Do users
care they are being directed off your site?
Nov 23 '05
31 3920
In article <Pi************ *************** ***@ppepc56.ph. gla.ac.uk>,
"Alan J. Flavell" <fl*****@ph.gla .ac.uk> wrote:
On Fri, 18 Nov 2005, Eric Lindsay wrote:
I think I am coming around to the view that I should use anything
new in CSS that doesn't involve positioning (which seems totally
broken in IE) if it looks good in some browser. In the past I have
been totally avoiding anything new for fear it wouldn't work in IE.
Now I think I'll just let IE fail to work with the new stuff, as
long as the web page is still able to be used. I am really tired of
having conservative pages
That sounds about right - as long as you aren't working for some
misguided sponsors who insist that everything that you use has to show
up on "all" browsers (by which they usually mean IE and "Netscape" -
they've never heard of IBM HPR, nor Lynx).


I am working to educate a couple of people with the idea that they can't
control what their page looks like. Between demonstrating different
browsers using different window sizes, with different text zooms,
graphics on and off, scripting on and off, and user font size and
stylesheets overriding stuff, I've managed to back them into a state of
shell shock. Luckily web pages are not central to their businesses,
they just have the idea that maybe they should have one.

If they want it to look identical, that is what PDF is for. When they
ask for PDF, I tell them to see the guys who would design flyers for
them, if they were willing to pay that sort of money. That seems to
eliminate that problem. Not sure what I'll do if they ever do get some
posters made - tell them more about search engine placement, I guess.
As long as you're allowed to design for advanced browsers, I'd say do
it, as long as the design also has graceful fallback.
Being retired and doing this for fun gives me lots more options. That
is why I am taking the time to learn to do it right.

Thank you for your comments on browser reactions to CSS. I should have
thought that through long ago.
[1] IE3 didn't understand em units, and when it saw a text size of
2em, it seems as if it guessed it might be a typo for 2px, with
deplorable consequences. That's an example of why the CSS spec
requires things that are not understood to be ignored!


Ouch! Px for em. At least that explains some of those pages I recall
not being able to read years and years ago. Luckily site stats seem to
indicate I can ignore IE3.

I am not willing to go to the length of telling people they should
change their browser (seems way too rude, and not productive at all).
However when I get somewhere with learning to do decent web pages, I may
put a page on my site explaining why it looks better in standards based
browsers than it does in a certain other one. Maybe stuff every trick I
find in that page, and include a jpg of what it should look like.

Thanks.

--
http://www.ericlindsay.com
Nov 23 '05 #31
Sat, 19 Nov 2005 15:02:01 +1000 from Eric Lindsay <NOSPAmar2005
@ericlindsay.co m>:
I am working to educate a couple of people with the idea that they can't
control what their page looks like. Between demonstrating different
browsers using different window sizes, with different text zooms,
graphics on and off, scripting on and off, and user font size and
stylesheets overriding stuff, I've managed to back them into a state of
shell shock.


Good for you, Eric!

I wonder if somewhere there's a set of ready-made images of a single
Web page with that sort of variation. It would be a great labor-
saving device for those of us who, like you, are trying to educate
people about the limits (and consequent benefits) of Web authorship.

--
Stan Brown, Oak Road Systems, Tompkins County, New York, USA
http://OakRoadSystems.com/
HTML 4.01 spec: http://www.w3.org/TR/html401/
validator: http://validator.w3.org/
CSS 2.1 spec: http://www.w3.org/TR/CSS21/
validator: http://jigsaw.w3.org/css-validator/
Why We Won't Help You:
http://diveintomark.org/archives/200..._wont_help_you
Nov 23 '05 #32

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

Similar topics

1
1663
by: xxnonexnonexx | last post by:
I use the following piece of code to show when the page thats being accessed was last updated: <!-- var modified = new Date(document.lastModified); document.write("<b>Last Updated:<i> "+modified+"</I></B>"); // --> This works great, but it only does it for the page thats currently displayed.
47
3235
by: Andy Dingley | last post by:
Assume an English language page, linking to a foreign history resource that's only available in a foreign language. Any suggestions on appropriate "best practice" markup, particularly regarding the scope of a lang attribute applied to a <a> element ? <p>Francisco de Miranda's <a href="http://www.simon-bolivar.org/bolivar/miranda_oci.html" title="Biography of Francisco de Miranda (in Spanish)" lang="es" >biography</a></p>
5
5574
by: eskwayrd | last post by:
Hi group, I'm trying to add a busy indicator to the sorttable.js code available at: http://www.kryogenix.org/code/browser/sorttable/ (Actually, my version is modified for my needs, such as maintaining zebra stripes post-sort, multi-column sorting, keeping rows with subordinate rows together. But my problem exists even with the original code).
7
2247
by: Andrew | last post by:
Hello, Is it possible for a file position indicator of an input stream to be greater than the size of a file? And if so could this cause fgetc to somehow write to the file? For example is it possible to continually call fgetc past the size of the file and cause some type of undefined behavior? Thanks
54
8980
by: Sathyaish | last post by:
I am trying to print to the printer. I am using a VC++ 6.0 compiler on Win 2K, but I get an error saying that stdprn is not defined. Why is that? Is it because of Windows, I am guessing? Do I have to use only the GDI32 functions for printing under Windows? Can I not use the stdprn under Windows to print from memory to the window?
4
1331
by: canbaby | last post by:
In linux, c program, How I know the net card's link is off? I had no idea now. Thanks
1
2206
by: Marko Vuksanovic | last post by:
I am trying to implement a file upload progress indicator (doesn't have to be a progress bar) using atlas... I do realize that the indicator cannot be implemented using Update panel control, but is it possible to implement it using some other control, for example a floating window? A link to example would also be useful. Thanks, Marko Vuksanovic.
7
3871
by: Marcus Kwok | last post by:
I am working on a program that reads and processes large text files (on the order of 32 MB, so not too huge), so I wanted to add a progress indicator so I can estimate when it will finish. I just need an estimate, so the exact byte count isn't essential. // reduced code // assume necessary #include's and using declarations for std // components ifstream file(filename.c_str());
1
1919
by: datapro01 | last post by:
Running DB2 8.2.5 and 9 with fix pack 2. Is there any way to update a table space level health indicator command line or do you have to use the Health Monitor. I want to shut down the ts.ts_op_status health indicator. Thanks in advance. Gerry
80
6474
by: nicolas.sitbon | last post by:
Hi everybody, in a french C book, the author says that only {fgetc, getc, getchar, fgetwc, getwc, getwchar, fgets, gets, fgetws, getws, fputc, putc, putchar, fputwc, putwc, putwchar, fputs, puts, fputws} are guaranteed to set the end-of-file indicator when the end-of-file is reached, but in C99 standard, I find p 288 (ISO/IEC 9899:TC3 Committee Draft — Septermber 7, 2007 WG14/N1256) /* ============================= */ #include <stdio.h>...
0
8840
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, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8730
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
9367
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
6669
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
5981
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
4753
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3189
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
2576
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2130
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.