Re: [WSG] Draggable Items

2005-03-20 Thread Jalenack
I've also seen this done nicely at http://panic.com

I'm no javascript expert, so I couldn't explain what they did. Just
check their source.. They've got an example on the main page, but it
all really shines in the apparel department:
https://www.panic.com/goods/

HTH

-- 
Andrew Sutherland
http://jalenack.com
**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**



Re: [WSG] CSS validator says [xX][mM][lL] is not allowed.

2005-03-19 Thread Jalenack
It may have something to do with the PHP echoing the prologdo you
have a special circumstance setup, like it only sends the prolog to
mozilla or something? I think the validator is receving something that
the browsers aren't.

Also, I just checked in IE5/mac, safari, and FF/mac. Everything is
perfect, aside from the double borders on the bottom of the you are
here link for each page. They are all black in Safari and IE/mac, but
really its nothing I would worry about.


On Sat, 19 Mar 2005 07:36:29 -0600, Leslie Riggs [EMAIL PROTECTED] wrote:
 Out of curiosity, I'm wondering why the xml prolog is there in the
 document when the page is being served as text/html?
 
 I'm still pretty new to this, so I'm happy to learn and understand
 
 Leslie Riggs
 
 Hi,
 
 I have valid XHTML
 http://idealcouple.com/
 http://validator.w3.org/check?uri=http%3A%2F%2Fidealcouple.com%2F
 
 
 And valid CSS
 http://idealcouple.com/styling/idealism.css
 http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fidealcouple.com%2Fstyling%2Fidealism.cssusermedium=all
 
 
 But when my client click CSS link in the footer,
 CSS validator says :
 
 Please, validate your XML document first!
 Line 2
 Column 6
 The processing instruction target matching [xX][mM][lL] is not allowed.
 
 
 I have both XHTML and CSS valid, but CSS Validator dont think so :(  Whats my
 problem?  The same trouble i have in my other site in development (line and
 column number are different)
 http://it.net.ua/weblog/
 
 We use PHP to render XML prolog and DOCTYPE, and we use PHP sessions.
 
 Any help are welcome, as well as screenshots from Mac people.
 
 Thanx,
 Andrey.
 
 
 
 **
 The discussion list for  http://webstandardsgroup.org/
 
  See http://webstandardsgroup.org/mail/guidelines.cfm
  for some hints on posting to the list  getting help
 **
 
 


-- 
Andrew Sutherland
Jalenack.com
**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**



Re: [WSG] Css Floating Image

2005-03-15 Thread Jalenack
Hi MM,

I tested your page in safari quickly...The image is floating
correctly. Is the image being taller than the text messing your
problem?

There are many techniques to clearing your floats so that they won't
overflow like that. The simplest of which:

applying overflow: auto to the #wrapper rule.

Here are some links:

http://www.sitepoint.com/blog-post-view?id=238086
http://www.positioniseverything.net/easyclearing.html

Hope this helps. If I'm getting at the wrong problem, write back with 
a screenshot link or something...

On Tue, 15 Mar 2005 22:54:29 -0500, M M [EMAIL PROTECTED] wrote:
 I am having problems floating an image in a div cell using css.
 I want to have the whole page centered and static width.  Then styling on
 the wrapper div, with the image floating so that text will line up next to
 it. Right now the problem is a gap under the image.
 
 See the code below, its the whole page with css.
 
 Thanks in advance.
 
 MM
 
 !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN
 http://www.w3.org/TR/html4/loose.dtd;
 htmlhead
 titleCSS layout test/title
 style type=text/css
 
 body{text-align: center;}
 #wrapper{
 text-align: left;
 border: 1px solid #00;
 width: 700px;
 }
 #box{
 float: left;
 background-color: #FF;
 border: 1px solid #3300FF;
 }
 #text{background-color: #00FF00;}
 
 /style/headbody 
 div id=wrapper
 div id=box
 img src=images/test.jpg 
 /div
 div id=textthis text should float to the right of the image/div
 /div
 /body/html
 
 _
 Don't just search. Find. Check out the new MSN Search!
 http://search.msn.click-url.com/go/onm00200636ave/direct/01/
 
 **
 The discussion list for  http://webstandardsgroup.org/
 
  See http://webstandardsgroup.org/mail/guidelines.cfm
  for some hints on posting to the list  getting help
 **
 
 


-- 
Andrew Sutherland
Jalenack.com
**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**



Re: [WSG] Strange problem

2005-03-10 Thread Jalenack
Alright, I tested it in IE5/Mac, Safari, Firefox and Opera and they
all turned up content.

Seeing as she doesn't know what system she's on, I'd very much doubt
she's running anything besides Mac or PC. Linux users tend to know
they are running linux :-)

It could have to do with this bit of CSS:

#leftcolumn { width : 350px; float : left; }

#rightcolumn { width : 350px; float : right;}

You don't need to float both items, just one or the other. I think in
some browsers (NN4 perhaps?) it just totally destroys that. It figures
if both items are floated there is nothing for them to float against.
Try experimenting with that snippet.

On Thu, 10 Mar 2005 12:39:24 -, designer
[EMAIL PROTECTED] wrote:
 Thanks Ingo, but she can see ALL the rest of the site, so it can't be that!
 
 Much obliged,
 
 Bob
 
 - Original Message -
 From: Ingo Chao [EMAIL PROTECTED]
 To: wsg@webstandardsgroup.org
 Sent: Thursday, March 10, 2005 12:15 PM
 Subject: Re: [WSG] Strange problem
 
  designer schrieb:
   www.sheltielife.co.uk
  
   ... However, one lady has contacted my wife because she 'can't see the
 gallery'.
  
 
  She just can't access your left frame when javascript is disabled.
 
  In FF, choose Tools/Options/Content/, and disable JavaScript, to see.
 
  I think this is a problem of your frame design.
 
 
  Regards, Ingo
  **
  The discussion list for  http://webstandardsgroup.org/
 
   See http://webstandardsgroup.org/mail/guidelines.cfm
   for some hints on posting to the list  getting help
  **
 
 
 
 
 **
 The discussion list for  http://webstandardsgroup.org/
 
  See http://webstandardsgroup.org/mail/guidelines.cfm
  for some hints on posting to the list  getting help
 **
 
 


-- 
Jalenack.com
**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**



Re: [WSG] I hope this is not off topic, W3c validation error

2005-03-07 Thread Jalenack
There is no 'alt' attribute for the a element. If you'd like to
display information about the link, use the title attribute:

lia href=http://asic.bc.cx/asic_history.php; title=ASIC
historyASIC history/a/li

The alt attribute is only (as far as I know) legal in img tags...The
validator was right.

On Mon, 7 Mar 2005 20:00:09 -0800, InfoForce Services (Angus
MacKinnon) [EMAIL PROTECTED] wrote:
 I hope this is not off topic. If it is, please reply to [EMAIL PROTECTED]
 I am starting to get very fustrated. When I try to use the W3C validator for
 an HTML file, I keep getting the following error.
 
 Line 13, column 53: there is no attribute alt
 
 lia href=http://asic.bc.cx/asic_history.php; alt=ASIC historyASIC
 history/a/li
 
 You have used the attribute named above in your document, but the document
 type you are using does not support that attribute for this element. This
 error is often caused by incorrect use of the Strict document type with a
 document that uses frames (e.g. you must use the Transitional document
 type to get the target attribute), or by using vendor proprietary
 extensions such as marginheight (this is usually fixed by using CSS to
 achieve the desired effect instead).
 
 This error may also result if the element itself is not supported in the
 document type you are using, as an undefined element will have no supported
 attributes; in this case, see the element-undefined error message for
 further information.
 
 How to fix: check the spelling and case of the element and attribute,
 (Remember XHTML is all lower-case) and/or check that they are both allowed
 in the chosen document type, and/or use CSS instead of this attribute.
 
 Angus MacKinnon
 MacKinnon Crest Saying
 Latin -  Audentes Fortuna Juvat
 English - Fortune Assists The Daring
 Web page: http://members.shaw.ca/dabneyadfm
 Choroideremia Research Foundation Inc.
 http://www.choroideremia.org
 
 **
 The discussion list for  http://webstandardsgroup.org/
 
  See http://webstandardsgroup.org/mail/guidelines.cfm
  for some hints on posting to the list  getting help
 **
 
 


-- 
Jalenack.com
**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**



[WSG] A different Firefox bug?

2005-02-19 Thread Jalenack
Hi, I've encountered a very odd behavior on my blog using firefox
(mac). http://blog.jalenack.com

If you focus the search box, or the any of the form elements in the
comment section, a ~200x50 box appears at the top left corner. I have
no idea why it happens, but it has been happening since I started my
blog. When you scroll anywhere, it disappears. I have had other
firefox mac users confirm this behavior, so it isn't just me. What
should I do? Anyone come across this before? BTW, I'm sending as
application/xhtml+xml for browsers that understand it.
-- 
Jalenack.com
**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**



Re: [WSG] Peoplesoft and standards

2005-02-09 Thread Jalenack
Hey,

I have never personally used any Peoplesoft applications, but I can say this:

A personal friend of mine is a Peoplesoft interface designer devloping
web apps and uses dreamweaver as his only application in the
development process (with accessibility features not on). I recently
discussed some XHTML/CSS stuff and he was interested in using CSS, but
said he had no experience of it. He seemed a bit apprehensive about
learning to handcode. So I am doubtful that their web apps truly
conform to 508 specs.

 Looking at the default framed, JS dependant, table ridden code I don't
 believe it.

Maybe they pass the automated validator...I wouldn't be surprised if
it were just another thing they added to the list of reasons for why
you should buy their product.


On Wed, 09 Feb 2005 08:48:15 -0500, J Rodgers
[EMAIL PROTECTED] wrote:
 Hi,
 
 I am not too sure where else to ask about this. I have recently been part of
 discussions about the Peoplesoft application that we and many Universities
 use (not my fault) and its adherence to accessibility recommendations, and
 web standards. Peoplesoft claims to adhere to section 508.. Is this true?
 Looking at the default framed, JS dependant, table ridden code I don't
 believe it.
 
 Does anyone have any experience with Peoplesoft applications?
 
 Thanks,
 Jesse
 
 --
 Jesse Rodgers
 Manager, Web Communications
 Communications  Public Affairs - University of Waterloo
 [EMAIL PROTECTED] | 519.888.4567 ext. 3874
 
 **
 The discussion list for  http://webstandardsgroup.org/
 
  See http://webstandardsgroup.org/mail/guidelines.cfm
  for some hints on posting to the list  getting help
 **
 
 


-- 
Get Firefox!

Visit - Jalenack.com - My blog!
**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**



Re: [WSG] Re: XHTML Strict alternative to ol start=11

2005-02-08 Thread Jalenack
Hey, I'm new here :-)

In response to Geoff's email,

XHTML is the web standard of the future. If we implement it now, we
are just helping move it along faster.  A friend of mine recently
created a php script that makes your XHTML into HTML for browsers that
cannot support it. You can check it out at
http://blog.geoffers.uni.cc/archives/2005/01/07/xhtml-html . It sends
application/xhtml+xml to browsers who can take it..and text/html to
browsers that cannot.

On transitional DTDs, they are meant to transitional, eh? So that you
can blend your old methods into brand new ones without using invalid
code. If you're going to use new methods only, there's no point of
using a transitional DTD. XHTML was first introduced in 2000, and
we're still transitioning. Ugg..

Regards,
Andrew Sutherland
**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**



Re: [WSG] different hover for visited links than unvisited?

2005-02-08 Thread Jalenack
Yes, heres the code

a:visited:hover {
**styles**
}

Not sure about its browser compatibility, but I've never seen it not work :p


On Tue, 08 Feb 2005 18:40:34 -0800, Andreas Boehmer
[EMAIL PROTECTED] wrote:
 I was wondering whether there is any way of creating a different hover
 effect for visited links than unvisited links, but I have got the
 feeling there is no way to achieve this?
 
 I was first hoping it could be done by changing the standard order of
 the pseudo classes, but that's not the way to go.
 
 Has anybody found a way of getting this to work?
 
 Thanks!
 
 Andreas Boehmer
 User Experience Consultant
 
 Phone: (03) 9417 0468
 Mobile: (0411) 097 038
 http://www.addictiveMedia.com.au
 Consulting | Accessibility | Usability | Development
 **
 The discussion list for  http://webstandardsgroup.org/
 
  See http://webstandardsgroup.org/mail/guidelines.cfm
  for some hints on posting to the list  getting help
 **
 
 


-- 
Get Firefox!

Visit - Jalenack.com - My blog!
**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**