Re: [WSG] Another proper use of dl's question

2004-10-07 Thread Cam Pegg
The W3 says that dls generally consist of a series of term/definition pairs (although definition lists may have other applications). As an example, another application of dl... is for marking up dialogues, with each dt naming a speaker, and each dd containing his or her words.

Re: [WSG] anchors within a page

2004-10-07 Thread john
Why not just put a name=content/a at the top of the page? Because I don't consider that to be a modern solution, and since I'm relearning how to code, I want some choices. ;) ~john _ Dr. Zeus Web Development http://www.DrZeus.net content without clutter

Re: [WSG] anchors within a page

2004-10-07 Thread john
An ID in the body? Now, why didn't I think of that? :) Is that valid? I'll try it! Thanks! ~john _ Dr. Zeus Web Development http://www.DrZeus.net content without clutter Patrick H. Lauke wrote: Two ideas spring to mind: - wrap the entire page content in a div with a

Re: [WSG] anchors within a page

2004-10-07 Thread john
That's good to know, Tom. I'm mostly concerned with IE for this problem. ~john _ Dr. Zeus Web Development http://www.DrZeus.net content without clutter Tom Livingston wrote: Works as intended in Safari 1.2.3 OS X 10.3.5. to the top takes me all the way back to the top.

Re: [WSG] anchors within a page

2004-10-07 Thread Neerav
sure an id for body is valid. it can be used in several ways eg http://www.hicksdesign.co.uk/journal/271/highlighting-current-page-with-css Neerav Bhatt http://www.bhatt.id.au Web Development IT consultancy Mobile: +61 (0)403 8000 27 http://www.bhatt.id.au/blog/ - Ramblings Thoughts

Re: [WSG] Another proper use of dl's question

2004-10-07 Thread Nick Lo
Thanks all for the replies. A thought that also occurred to me whilst working on it was if you lay out a bunch of links in this style... dl dt a href=http://www.google.com; title=Google, a big and useful search engineGoogle/a/dt ddA big and useful search engine/dd /dl ...,as you might on a

[WSG] hidden list background issues, etc.

2004-10-07 Thread Lorenzo Gabba
URL: http://196.36.166.35/tower CSS: http://196.36.166.35/tower/s/tower.css CSS: http://196.36.166.35/tower/s/navDropdown.css 1. In IE6, the border/background of the top list in the #steps layer appears hidden. Is there a way to fix this? 2. There's also a major gap on the left of the list that

RE: [WSG] PDF to HTML conversions

2004-10-07 Thread Nancy Johnson
As I said earlier, some .pdf's can be made accessible in the later versions of Acrobat Standard andProfessionalunder Tools and Accessibility. For those type of documents you can also open your .pdf document and do a "save as" and save it as a .doc or .rtf. It will tell you if you cannot save

Re: [WSG] Web Design Scene in Christchurch

2004-10-07 Thread Andy Budd
A friends partner has just been given a job offer in Christchurch but it would depend on them being able to find work while they were over there. Just wondering what the scene was like and if there were any well respected names in Christchurch they could try. Darren Wood wrote: There is a

[WSG] Help about negative positioning

2004-10-07 Thread Befree
Hi, I have some problem using negative positioning; it works well on IE, Mozilla Firefox, Mozilla but not with Opera, Konqueror and Safari. The H1 Title on the top right goes too high in the last 3 browsers, how can I place my H1 Title in the same position without using this ugly trick...? The

Re: [WSG] Is XHTML harmful?

2004-10-07 Thread Tom Livingston
Please forgive any ignorance on my part... So I can copy the guts of an XHTML document in all it's splendor with br /s et all and paste it into an HTML document and all is dandy? Tom Livingston Senior Multimedia Artist mlinc.com Get FireFox

Re: [WSG] hidden list background issues, etc.

2004-10-07 Thread Nick Gleitzman
Lorenzo wrote: URL: http://196.36.166.35/tower CSS: http://196.36.166.35/tower/s/tower.css CSS: http://196.36.166.35/tower/s/navDropdown.css 1. In IE6, the border/background of the top list in the #steps layer appears hidden. Is there a way to fix this? 2. There's also a major gap on the left of

RE: [WSG] Is XHTML harmful?

2004-10-07 Thread Geoff Deering
Chris Bentley wrote: Are there any parsers out there you explicitly trust to get it right every time? I don't. I know of one, http://validator.w3.org/. Are you say though that User Agents are generally better/fast at parsing/rendering valid XHTML than they are valid HTML? No, that is

Re: [WSG] hidden list background issues, etc.

2004-10-07 Thread Tom Livingston
Safari 1.0 has got to be a unbelievably microscopic audience, if it exists at all. That version should never have seen the light of day (like NS6), and IMHO not worried about. FWIW Tom Livingston Senior Multimedia Artist mlinc.com Get FireFox

Re: [WSG] Is XHTML harmful?

2004-10-07 Thread Vlad Alexander \(XStandard\)
Hi Tom, Yes - the markup will validate as HTML. Here is an example: http://xstandard.com/html4.htm Validate it using: http://validator.w3.org/check?uri=http%3A%2F%2Fxstandard.com%2Fhtml4.htm Check out an article I wrote about this a while back:

[WSG] Input File Format

2004-10-07 Thread Genau Junior
Hello folks! I´m having some dificulty to set the size of [input=file] form element. I can set the width through CSS on Mozzila, but IE cant set the size that i formated on CSS file. Anyone can help me how i set a size on INPUT FILE on both browsers? besides follows the hiperlink

Re: [WSG] thoughts of external links in new window?

2004-10-07 Thread Chris Stratford
I use XHTML Strict, and have modded the DTD to accept New Window code. If you would like you can use my version: !DOCTYPE html PUBLIC XHTML 1.01 Strict http://www.neester.com/DTD/xhtml-target.dtd; I dubbed it XHTML 1.01 Strict... I know incorrectly named 1.01 - but I thought it was cute at the

Re: [WSG] thoughts of external links in new window?

2004-10-07 Thread Patrick H. Lauke
Chris Stratford wrote: I use XHTML Strict, and have modded the DTD to accept New Window code. What always makes me wonder about these solutions is that, in effect, they are still reliant on the fact that current browsers have the built-in understanding and capability of reacting a certain way

Re: [WSG] thoughts of external links in new window?

2004-10-07 Thread Chris Stratford
The browser will understand the target=_blank no matter what the DTD is. I think it would just assume HTML, and therefore _blank = new window. The DTD I forged with the help of a tutorial - will allow you the VALIDATE XHTML 1.0 Strict code. That is all - I should have mentioned that earlier. And

Re: [WSG] thoughts of external links in new window?

2004-10-07 Thread Terrence Wood
I think you are correct in your assessment that opening a new window is a behavior of the UA, and therefore (arguably) should not be included in the DTD that describes the structure of a document. Having said all that Chris's solution of having extended and published the DTD is perfectly

[WSG] the height of an unordered list in ie

2004-10-07 Thread Ted Drake
I've been having some trouble with our topnav. It's a simple unordered list with nested unordered lists to represent the subnav. The top nav is horizontal and in the tab-like format. The subnav sits below it. In firefox and most browsers, there is a 1 pixel line below the topnav and above

RE: [WSG] Help about negative positioning

2004-10-07 Thread Andreas Boehmer [Addictive Media]
Negative values always give pretty bad results. Instead of moving it up, why don't you float the heading to the right of your logo and then just movie it a bit down and a bit left (by giving margin-top and margin-right)? That should give you the result you want, without using negative numbers.

Re: [WSG] thoughts of external links in new window?

2004-10-07 Thread Patrick H. Lauke
Terrence Wood wrote: Having said all that Chris's solution of having extended and published the DTD is perfectly acceptable. Yes, sorry...I wasn't questioning the validity of Chris' solution per se. I was just taking a step back to look at the bigger picture, beyond mere validation, to what it

[WSG] Ooh, Pretty Green!!!

2004-10-07 Thread Shane Helm
Ooh, Pretty Green!!! http://jigsaw.w3.org/css-validator/ The red validation always made my subconscious think something was wrong; although it said Congratulations!. The aqua green is much nicer! Sorry. Just had to comment on it. This was my first time to see the green Congratulations! in

Re: [WSG] Ooh, Pretty Green!!!

2004-10-07 Thread Daniel Low
#007cbb is not green (124), it's more blue (187) but it's pretty. Congratulations! -- Daniel Low On Thu, 7 Oct 2004 17:33:18 -0600, Shane Helm [EMAIL PROTECTED] wrote: Ooh, Pretty Green!!! http://jigsaw.w3.org/css-validator/ The red validation always made my subconscious think something

Re: [WSG] Ooh, Pretty Green!!!

2004-10-07 Thread Wayne Godfrey
Wow, they changed the color? I always got the shakes when it seemed like it was taking too long...I'd get this big lump in my throat and immediately start thinking about what could possibly be wrong! At least to this point, my biggest problems have been my really lousy typing...ok, so myh spelink

[WSG] Help. 2 extra words breaks the page

2004-10-07 Thread Paul Burchfield
I'm trying to create a sidebar for web pages at work to allow an author a spot to place notes or other quick thoughts. What I've found is that the amount of text in the sidebar paragraph can break the page. At some point an extra t words causes all of the text on the page to go beyond the

Re: [WSG] Help. 2 extra words breaks the page

2004-10-07 Thread Lea de Groot
On Thu, 7 Oct 2004 18:00:49 -0700, Paul Burchfield wrote: What I've found is that the amount of text in the sidebar paragraph can break the page. At some point an extra t words causes all of the text on the page to go beyond the right hand boundary of the page Well, you'll be happy to know

Re: [WSG] Help. 2 extra words breaks the page

2004-10-07 Thread Jay Smith
On Thu, 7 Oct 2004 18:00:49 -0700, Paul Burchfield [EMAIL PROTECTED] wrote: I'm trying to create a sidebar for web pages at work to allow an author a spot to place notes or other quick thoughts. What I've found is that the amount of text in the sidebar paragraph can break the page. At some

Re: [WSG] Help. 2 extra words breaks the page

2004-10-07 Thread Alex Kouzemtchenko
On Fri, 8 Oct 2004 14:07:21 +1100, Jay Smith [EMAIL PROTECTED] wrote: On Thu, 7 Oct 2004 18:00:49 -0700, Paul Burchfield [EMAIL PROTECTED] wrote: I'm trying to create a sidebar for web pages at work to allow an author a spot to place notes or other quick thoughts. What I've found is that

Re: [WSG] Is XHTML harmful?

2004-10-07 Thread Dean Jackson
On 7 Oct 2004, at 02:09, Vlad Alexander (XStandard) wrote: Hi Kim, Ian Hickson is _not_ saying XHTML is harmful, he is saying that serving up XHTML with the wrong MIME type is bad. That's right. It's probably not the best title for the document, but my feeling is that people using the ...