473,786 Members | 2,737 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Box appearing when I click on graphics in IE 6.0

Hello, We have built a web page and on IE 6.0, Win XP, when we click on
graphics, a mysterious little dotted box appears around the graphic.
We're pretty sure this is nothing we've programmed in. Is this a
browser setting? Look at the innocuous little dotted box around the
button "Environmen t"

http://chalantmedia.com/showing-table.jpg

Is this something that can be turned off at a browser setting? This is
the code behind the environment button (but the box happens upon
clicking on any button)

<td>
<a href="environme nt.php" onmouseover="ch angeImages('NAV _14',
'images/NAV_14-over.gif'); return true;"
onmouseout="cha ngeImages('NAV_ 14', 'images/NAV_14.gif'); return true;"
onmousedown="ch angeImages('NAV _14', 'images/NAV_14-over.gif'); return
true;" onmouseup="chan geImages('NAV_1 4', 'images/NAV_14-over.gif');
return true;"><img name="NAV_14" src="images/NAV_14.gif" width="104"
height="58" border="0" alt=""></a></td>

Thanks, - Dave

Nov 10 '05 #1
6 1466
la***********@z ipmail.com wrote:
Hello, We have built a web page and on IE 6.0, Win XP, when we click on
graphics, a mysterious little dotted box appears around the graphic.
It's the "selection rectangle", one of the user-friendly features of IE
since version 4. See http://www.cs.tut.fi/~jkorpela/www/links.html#selrect
We're pretty sure this is nothing we've programmed in.
Depends on who "we" are. If you mean the mankind, then surely we have
programmed it in.
Is this a browser setting?
Not really.
Look at the innocuous little dotted box around the
button "Environmen t"

http://chalantmedia.com/showing-table.jpg
In future, please post the URL of the _page_ (_and_, if relevant, a URL
of a snapshot of it on some browser, too).
Is this something that can be turned off at a browser setting?
Not on IE. But this isn't the right group to discuss browser settings.
<td>
<a href="environme nt.php" onmouseover="ch angeImages('NAV _14',
'images/NAV_14-over.gif'); return true;"
onmouseout="cha ngeImages('NAV_ 14', 'images/NAV_14.gif'); return true;"
onmousedown="ch angeImages('NAV _14', 'images/NAV_14-over.gif'); return
true;" onmouseup="chan geImages('NAV_1 4', 'images/NAV_14-over.gif');
return true;"><img name="NAV_14" src="images/NAV_14.gif" width="104"
height="58" border="0" alt=""></a></td>


Stop worrying about problems that aren't problems. You have sufficiently
many problems already. To begin with, your alt attribute is much worse
than useless. What _were_ you thinking when you wrote alt="" there?

Besides, image swapping techniques are unnecessarily complex and
unreliable. Moreover, you clearly have far too many links in your
navigation bar. (Start from 1. It's often the best number.)
Nov 10 '05 #2
la***********@z ipmail.com wrote:
Hello, We have built a web page and on IE 6.0, Win XP, when we click on
graphics, a mysterious little dotted box appears around the graphic.
We're pretty sure this is nothing we've programmed in. Is this a
browser setting? Look at the innocuous little dotted box around the
button "Environmen t"

I *think* it can be removed by
a { border: 0; }
but without an URL I cannot be sure.

--
jmm (hyphen) list (at) sohnen-moe (dot) com
(Remove .AXSPAMGN for email)
Nov 10 '05 #3
Here is the url

http://cwrefillonline.com/donate.php

When you said border:0, did you mean on the "img" element? I already
had that included (border="0") unless there are other constraints that
I should be aware of.

Much thanks for your serious, non-sarcastic reply.

Nov 10 '05 #4
la***********@z ipmail.com wrote:

http://cwrefillonline.com/donate.php


That "doted box" around the links is the focus outline. It is an
accessibility feature of some browsers, including IE and mozilla. It
helps the user see which element on the page is active.

If you think it makes the page look unattractive, too bad. It is there
for your user's benefit. Don't mess with it.

--
Reply email address is a bottomless spam bucket.
Please reply to the group so everyone can share.
Nov 10 '05 #5
I understand. Theoretically, if I "wanted" to mess with it, how would
that be done?

Thanks, -

Nov 11 '05 #6
Els
la***********@g mail.com wrote:
I understand. Theoretically, if I "wanted" to mess with it, how would
that be done?


Mess with what?
Please quote the relevant bits of the message you are replying to, so
that your message will make sense to other people.

--
Els http://locusmeus.com/
Sonhos vem. Sonhos vão. O resto é imperfeito.
- Renato Russo -
Now playing: Electric Boys - If I had a car
Nov 11 '05 #7

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

Similar topics

1
2423
by: news.microsoft.com | last post by:
Hello group, My goal is to attach an image over another image. Top image should be transparent so the back image is visible through the top one. Bellow is a test code in VB.NET. You need to create a form, a button (Button1) and an Picture Box (picBox). "watermark.jpg" is any jpg image, "beispiel.tif" is a multipage TIFF image with the white background, which will turn to transparent. The most important thing here is that the TIFF image...
18
6067
by: nutso fasst | last post by:
Hello. Is there a way to make an element 'transparent' to mouse activity, such that mouse events go to the underlying element? I have an absolutely-positioned image element with transparency that partly overlaps another element. I want mouse events on the overlapping image to go to the underlying element. Thanks, nf
4
1940
by: jesse.hartwick | last post by:
Hey group! I have a toolbar with a "DEVELOPER" menu. I have it so that it when the menu title is clicked, a pop-up form will appear if the user has not yet verified that he or she has developer privileges (this menu only appears when the user is set up as a developer, but i'm a bit paranoid on these matters i guess). My problem is that when the menu title is clicked, the form appears but so does the menu, and the menu has the focus,...
1
3646
by: Novice | last post by:
I'm afraid I will incur the wraith of Mr. Powell on this one - but I did read his #1 FAQ and some others and I still can't figure this out. I created this little c# app. and I have a PictureBox in my Form. I load this image from the filesystem into the PictureBox and then I draw random little lines on the image. Then when I minimize and reopen the application the little lines are gone. Is there a way to save my lines in memory and...
8
3322
by: Stefan Richter | last post by:
I want to paint some bars, as soon as a button get klicked. My Paint Method has this signature: Private Sub PaintChart(ByVal sender As Object, ByVal e As PaintEventArgs, ByVal insolvent As Decimal, ByVal days30 As Decimal, ByVal days60 As Decimal, ByVal days90 As Decimal, ByVal current As Decimal) Means it needs to get a PaintEventArgs to work. My Button Click Method has this signature: Private Sub view_something_Click(ByVal sender As...
10
1822
by: pcnerd | last post by:
I've created a demo program that draws random lines on the form. At the end, a messagebox pops up with the words"I'm done!". When I click on "OK", the messagebox disappears, but a white square is left in its place. I can still see the randomly drawn lines on the form, but some are covered up by the white square. How do I prevent the white square from showing after the messagebox closes? Thank you. David
1
1129
by: voytello | last post by:
Hello Everyone, If this problem was already mentioned on this group, please forgive me but I couldn't find it. I've made a simple app to train using the class Graphics. The Form property FormBorderStyle I've set as "None", then I've used class Graphics to create some Elipses and Rectangles. Also I've created Button to minimize window - with Event to this button as:
4
1600
by: Wong Yung | last post by:
Hi guys, I recently noticed this strange script appearing on my webpage. I know I didn't put it there because I hand-coded it. Someone told me it looks like javascript and it looked like I might have been hacked. I've taken the webpage down for now but I was hoping someone here would be able to tell me what it does so I know just how much trouble I'm in. I'm taking off the script tags and breaking it up just to make sure it doesn't...
2
1476
by: skanemupp | last post by:
why is the first program not working? when i click the screen the map is not appearing. the second program works. from Tkinter import * master = Tk()
0
10363
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
10110
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
9961
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
8989
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, and deployment—without 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...
0
6745
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
5397
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...
0
5534
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3669
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2894
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.