473,473 Members | 1,843 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Down to one puzzling error.

Take a look:
http://oil4lessllc.com/StripperWells.htm

There is an issue tho; the HTML checker sez it fails, when the same
border statement used to be OK.
It flags only the first one, and none of the others which are identical.
The code used to work at one time, but i futzed around with it trying
to get positioning OK, get rid of blue borders, and add "US" to the list
(of the five pad numbers wher both icon changed color and a URL became
available).
I do not know how to fix this problem; would someone please be kind
enough to help?
Apr 17 '06 #1
8 1163
To further the education of mankind, Robert Baer
<ro********@earthlink.net> vouchsafed:
Take a look:
http://oil4lessllc.com/StripperWells.htm

There is an issue tho; the HTML checker sez it fails, when the same
border statement used to be OK.
It flags only the first one, and none of the others which are
identical. The code used to work at one time, but i futzed around
with it trying
to get positioning OK, get rid of blue borders, and add "US" to the
list (of the five pad numbers wher both icon changed color and a URL
became available).
I do not know how to fix this problem; would someone please be kind
enough to help?


Don't you response to replies to your previous posts?

--
Neredbojias
Infinity can have limits.
Apr 17 '06 #2
Robert Baer wrote:

There is an issue tho; the HTML checker sez it fails, when the same
border statement used to be OK.
It flags only the first one, and none of the others which are identical.
I do not know how to fix this problem; [...]

You are now using HTML 4.01 Strict, not Transitional. Some attributes
are no longer valid.
The validator is not without its faults. Just keep correcting the errors
until there are no more.

--
jmm (hyphen) list (at) sohnen-moe (dot) com
(Remove .AXSPAMGN for email)
Apr 17 '06 #3
In article <ju*****************@newsread2.news.pas.earthlink. net>,
Robert Baer <ro********@earthlink.net> wrote:
Take a look:
http://oil4lessllc.com/StripperWells.htm

There is an issue tho; the HTML checker sez it fails, when the same
border statement used to be OK.


In HTML 4.0 Strict, there is no border attribute; you have to use
CSS. Remove the "border=0" from inside of your img tag. Then, in
between the <style type="text/css"> </style> tags, you can put the
following:

<!--
img { border: 0; }
-->

This will cause all images to have no borders. Or you can put
style="border: 0" inside each img tag that needs no border.

-A
Apr 17 '06 #4
Jim Moe wrote:
Robert Baer wrote:
There is an issue tho; the HTML checker sez it fails, when the same
border statement used to be OK.
It flags only the first one, and none of the others which are identical.
I do not know how to fix this problem; [...]


You are now using HTML 4.01 Strict, not Transitional. Some attributes
are no longer valid.
The validator is not without its faults. Just keep correcting the errors
until there are no more.

I have gone as far as i can go; if the border attribute is not valid
in that line, then it is not valid in the next five lines.
Either border is valid in all of them, or in none of them - and it
once was.
If i remove the border statement from line 69, the validator then
complains about the exact same atribute in line 74 (the next time it
appears).
And i do *not* want a blue border!

Apr 17 '06 #5
axlq wrote:
In article <ju*****************@newsread2.news.pas.earthlink. net>,
Robert Baer <ro********@earthlink.net> wrote:
Take a look:
http://oil4lessllc.com/StripperWells.htm

There is an issue tho; the HTML checker sez it fails, when the same
border statement used to be OK.

In HTML 4.0 Strict, there is no border attribute; you have to use
CSS. Remove the "border=0" from inside of your img tag. Then, in
between the <style type="text/css"> </style> tags, you can put the
following:

<!--
img { border: 0; }
-->

This will cause all images to have no borders. Or you can put
style="border: 0" inside each img tag that needs no border.

-A

Thanks; that did it!
Apr 17 '06 #6
To further the education of mankind, ax**@spamcop.net (axlq) vouchsafed:
In article <ju*****************@newsread2.news.pas.earthlink. net>,
Robert Baer <ro********@earthlink.net> wrote:
Take a look:
http://oil4lessllc.com/StripperWells.htm

There is an issue tho; the HTML checker sez it fails, when the same
border statement used to be OK.


In HTML 4.0 Strict, there is no border attribute; you have to use
CSS. Remove the "border=0" from inside of your img tag. Then, in
between the <style type="text/css"> </style> tags, you can put the
following:

<!--
img { border: 0; }
-->

This will cause all images to have no borders. Or you can put
style="border: 0" inside each img tag that needs no border.


Shit! I told this guy that 3-4 threads back where this same crap
originated. Goin' for a beer...

--
Neredbojias
Infinity can have limits.
Apr 17 '06 #7
Robert Baer <ro********@earthlink.net> writes:
Jim Moe wrote:
Robert Baer wrote:
There is an issue tho; the HTML checker sez it fails, when the
same border statement used to be OK.
It flags only the first one, and none of the others which are identical.
I do not know how to fix this problem; [...]
You are now using HTML 4.01 Strict, not Transitional. Some
attributes
are no longer valid.
The validator is not without its faults. Just keep correcting the errors
until there are no more.

I have gone as far as i can go; if the border attribute is not
valid in that line, then it is not valid in the next five lines.


Correct - none of them are valid. Many people have told you that, and you
can easily verify it yourself by simply looking up the relevant docs at
w3.org.
Either border is valid in all of them, or in none of them - and it
once was.
No, you were once using a different DTD, with different rules. Again,
you've been told that before, it's even quoted above.
If i remove the border statement from line 69, the validator then
complains about the exact same atribute in line 74 (the next time
it appears).


It's correct to complain - "border" is not valid in the Strict DTD.

sherm--

--
Cocoa programming in Perl: http://camelbones.sourceforge.net
Hire me! My resume: http://www.dot-app.org
Apr 17 '06 #8
Robert Baer wrote:
Jim Moe wrote:
Robert Baer wrote:
There is an issue tho; the HTML checker sez it fails, when the same
border statement used to be OK.
It flags only the first one, and none of the others which are
identical.
I do not know how to fix this problem; [...]


You are now using HTML 4.01 Strict, not Transitional. Some attributes
are no longer valid.
The validator is not without its faults. Just keep correcting the
errors
until there are no more.

I have gone as far as i can go; if the border attribute is not valid
in that line, then it is not valid in the next five lines.
Either border is valid in all of them, or in none of them - and it
once was.
If i remove the border statement from line 69, the validator then
complains about the exact same atribute in line 74 (the next time it
appears).
And i do *not* want a blue border!


Remove the "border" attributes from the affected elements. Use a
style-sheet to suppress the border.

Define a class on img elements:
img.link {border-style: none}
Use that class for all such elements that are within anchor (link)
elements.

Besides doing that, I also define a class on anchor elements:
a.image {text-decoration: none}
and use it on all anchors that contain images. This eliminates the
underline.

Note that, where an img element is contained in an anchor, I use the
"title" attribute for the anchor to indicate (via a tooltip) that there
really is a link hidden there. (Usually, I also have some visible text
for that.) I reserve the "title" attribute of the img element to
indicate the origin or copyright of the image.

--

David E. Ross
<http://www.rossde.com/>

Concerned about someone (e.g., Pres. Bush) snooping
into your E-mail? Use PGP.
See my <http://www.rossde.com/PGP/>
Apr 17 '06 #9

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

Similar topics

1
by: Robert Brown | last post by:
I have a deadlock that's happening on one oracle instance but cannot be reproduced on any other. It is always caused by the same SQL statement colliding with itself and only happens under very high...
7
by: Rob Meade | last post by:
Hi all, Just spent an hour and a half trying to get something to work when we realised we had the same problem over a year ago... I have an ASP page which calls a stored procedure, all the...
6
by: oeyvind toft | last post by:
I have a frameset consisting of 3 frames: top, left and right. In top frame: body onload calls a js init function to set (or resets) values in textareas etc...in all frames. In right frame: A...
9
by: Ishira | last post by:
Hello all, I have written a program to test bits in a bit stream. I cant figure out what is wrong with it. I have a char * array of 0's and 1's and I basically need to go through this array...
1
by: 4Space | last post by:
Hi, I've just been refactoring a managed C++ class library. The managed classes use a couple of our native dlls, and the linkage on that front appears to be OK. I do however get this error at...
3
by: Jav | last post by:
V2005, Windows xp Prof, asp.net newbie I am having a devil of a time starting an asp.net app. Here's what I'm doing. 1. Create a Folder (TestSite) in Visual Studio 2005\Projects\WebSites 2....
6
by: mcgrew.michael | last post by:
I hope this is the right group. I am very new to ASP so this is probably a stupid question. I have some vbscript that query's AD and populates a recordset. I know the recorset contains the...
1
by: Alvin | last post by:
Note: Source code and compile commands are at the bottom. I've spent some time with a friend making a nice and simple to use OOPified C++ networking layer for TCP that works on multiple...
2
by: Me LK | last post by:
I have a nested dropdown inside a datagrid. One for colors one for sizes. Not all items have colors or sizes, however, so I need to find a way to detect if the drop down is blank and make the...
4
by: jlhsgcib | last post by:
Hello, I have the following snippet of code: sub getPasswordStatus { my ($login, $password) = @_; my$quotedLogin = quotemeta($login);
0
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,...
0
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...
0
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,...
0
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,...
1
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...
0
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...
0
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...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.