RE: [WSG] absolute positioned a not where it should be

2006-01-06 Thread Nic
Not sure about your layout issue, but you may want to consider changing all those read more links. WCAG 1.0 point#13.1 says: Clearly identify the target of each link. This means someone who uses a screenreader and skips links by tabbing through them will actually have an idea about where the

Re: [WSG] absolute positioned a not where it should be

2006-01-06 Thread Lynne Pope
The li triggers white space issues in IE. You will need to add some conditional statements to insert an IE workaround for this issue.Cheers,LynneOn 1/7/06, Taco Fleur - Pacific Fox [EMAIL PROTECTED] wrote: Didn't see my first message hit the list so I thought I'd try again, excuses if it

RE: [WSG] absolute positioned a not where it should be

2006-01-06 Thread Taco Fleur - Pacific Fox
Merchant integration From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Lynne PopeSent: Saturday, 7 January 2006 12:03 PMTo: wsg@webstandardsgroup.orgSubject: Re: [WSG] absolute positioned a not where it should be The li triggers white space issues in IE. You

Re: [WSG] absolute positioned a not where it should be

2006-01-06 Thread Lynne Pope
Conditional statements are, in my opinion, the best way to handle IE hacks (especially with the likely introduction of more problems to deal with when IE7 is released). You can just take the route of adding IE hacks into your css if you are not familiar with the if, then, else types of

RE: [WSG] absolute positioned a not where it should be

2006-01-06 Thread Taco Fleur - Pacific Fox
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Lynne Pope Sent: Saturday, 7 January 2006 1:08 PM To: wsg@webstandardsgroup.org Subject: Re: [WSG] absolute positioned a not where it should be Conditional statements are, in my opinion, the best way

Re: [WSG] absolute positioned a not where it should be

2006-01-06 Thread Lynne Pope
On 1/7/06, Taco Fleur - Pacific Fox [EMAIL PROTECTED] wrote: Thanks, so this conditional style will only work in Internet Explorer is that right? It depends on how you write a conditional statement but the example I gave you is for IE, yes. It says, if IE, then do something. Sorry, just