|
-
Dec 17th, 2002, 04:57 PM
#1
Thread Starter
Frenzied Member
Mass HTML Documents Validator?
Hi there, does anyone know of a site where there is a mass document validator?, that will spider every link on the page, and create a report for each page?
If not a site, a decent FREE windows program that will do it?
Ta
-
Dec 17th, 2002, 04:59 PM
#2
Do a Google search for Garage Monkey Website.
-
Dec 17th, 2002, 05:38 PM
#3
Frenzied Member
Also http://www.htmlhelp.com/tools/validator/batch.html has a validator where you can seperate files by new lines. It's not as good as the W3C one, but it's generally not bad.
-
Dec 17th, 2002, 10:06 PM
#4
Thread Starter
Frenzied Member
-
Dec 18th, 2002, 06:16 AM
#5
Frenzied Member
The W3C's one often goes down, just check back there tomorrow. But the HTML site I gave you up there has a CSS validator somewhere on their site. That one has quite a few bugs with advanced stuff like selectors, etc. Still not bad though.
-
Dec 18th, 2002, 07:36 AM
#6
Thread Starter
Frenzied Member
OK, checking my CSS, i have quite a few warnings on it (tsk tsk for me i guess).
http://adz.ods.org:88/themes/subGreen/style/style.css < Style Sheet.
how do i add, "Background-Image" to the "Background" tag?
I have this code for my body:
Code:
body {
color: #000000;
background: #EEFFEE;
background-image: NONE;
scrollbar-face-color: #EEFFEE;
scrollbar-highlight-color: #000000;
scrollbar-shadow-color: #EEFFEE;
scrollbar-3dlight-color: #E0E7F1;
scrollbar-arrow-color: #587EA5;
scrollbar-track-color: #EEFFEE;
scrollbar-darkshadow-color: #015E8C;
}
and it returns these errors:
Code:
background-image: NONE
Warning: The shorthand background property is more widely supported than background-image.
scrollbar-face-color: #EEFFEE
Error: Property scrollbar-face-color not recognized.
scrollbar-highlight-color: #000000
Error: Property scrollbar-highlight-color not recognized.
scrollbar-shadow-color: #EEFFEE
Error: Property scrollbar-shadow-color not recognized.
scrollbar-3dlight-color: #E0E7F1
Error: Property scrollbar-3dlight-color not recognized.
scrollbar-arrow-color: #587EA5
Error: Property scrollbar-arrow-color not recognized.
scrollbar-track-color: #EEFFEE
Error: Property scrollbar-track-color not recognized.
scrollbar-darkshadow-color: #015E8C
Error: Property scrollbar-darkshadow-color not recognized.
anyone know of a more "versitile" scrollbar coloring style?
-
Dec 19th, 2002, 01:18 PM
#7
Frenzied Member
Well for the background thing, if you don't want an image just remove the background-image bit:
Code:
background: #EEFFEE;
As for the Scrollbar thing, that's a proprietary MS IE extension (which I think one of the linux browsers also supports). You have to just remove it if you want it to validate, or alternatively add it to your documents via JavaScript. I should be able to figure the JavaScript out for you if you want it.
-
Dec 19th, 2002, 04:10 PM
#8
Thread Starter
Frenzied Member
Nah, i will knock up a bit of PHP Code to add the "<link rel=.." stuff for IE only things in 
Form styles r supporting in things other then IE correct?
-
Dec 20th, 2002, 05:55 AM
#9
Frenzied Member
CSS for form elements? Yeah they're supported in Mozilla and Opera 7. Mozilla has some very good support for background's of elements, like you can put animated GIFs as backgrounds for textboxes
-
Dec 21st, 2002, 12:31 AM
#10
Thread Starter
Frenzied Member
OK, now, according to the mass html validator (and a lot of work i did going thru every php script i have done for me site, turning it into "Valid HTML Output"
I am almost entirely done for the validness of the html on the whole site... except:
<textarea WRAP="OFF" name=....
Error: there is no attribute WRAP for this element (in this HTML version)
So, im guessing (hopefully) there is some Style="??: ??;" method of turning WRAP > Off? (I have got a bit of PHP Script in a text area for people to add to their sites, & if it does wrap, it will cause errors etc So i need it off )
know of the style= method? (if there is one) or a more "valid" method?
TNX
-
Dec 21st, 2002, 07:06 AM
#11
Frenzied Member
<textarea style="white-space: nowrap;"></textarea>
And if that doesn't work you may also need to add overflow: scroll; in there too, you shouldn't need to though.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|