Re: [css-d] CSS tooltip bug ONLY in FF and Chrome

2010-06-04 Thread Thierry Koblentz
> I hope you will correct your HTML.
> 
> You have a lot of block level elements in inline elements like this :
> something
> 
> You can't do that kind of thing.
> 
> Please try to correct your HTML before to make your CSS. You will not
> have any problem as you have now.
> 
> And remove the comment line before the doctype. you can only have a xml
> prolog before the doctype.

The XML prolog would trigger quirksmode too.

> PS :  sorry for my bad english. I'm french and i'm trying to improve my
> english :D

Tu te débrouilles bien ;)

--
Regards,
Thierry
www.tjkdesign.com | www.ez-css.org | @thierrykoblentz

__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] CSS tooltip bug ONLY in FF and Chrome

2010-06-03 Thread Arnaud Guéras
I hope you will correct your HTML.

You have a lot of block level elements in inline elements like this : 
something

You can't do that kind of thing.

Please try to correct your HTML before to make your CSS. You will not have any 
problem as you have now.

And remove the comment line before the doctype. you can only have a xml prolog 
before the doctype.
And I thing if you have comment before doctype your IE browser version 7 and 8 
are rendering the website in quirksmode (IE 5.5 mode)

PS :  sorry for my bad english. I'm french and i'm trying to improve my english 
:D

On Jun 3, 2010, at 12:14 PM, Thierry Koblentz wrote:

>> I have a class with position:relative on the 'a' tag, then absolute  
>> on
>> the hover state. The positioning doesn't work correctly in either FF
>> or Chrome. Works fine in every other browser. Haven't been able to
>> find any possible reason in my Google searches thus far. Anyone else
>> experience something like this?
>> 
>> All relevant CSS has been placed in the head for debugging.
>> 
>> My only possible lead so far:
>> I've placed a border around the entire 'a' tag contents, and it's not
>> wrapping around any of it. So my assumption is that these two  
>> browsers
>> are not reading the correct positioning, if that makes sense??
>> 
>> LINK:
>> http://www.loctiteproducts.com/super-glues-debug.shtml
> 
> For the border to show around the element try:
> 
> a.tooltip {display:block;}
> 
> That may also fix the behavior you're looking for.
> 
> As a side note, you cannot have P (or any block-level elements) in  
> anchors.
> 
> 
> --
> Regards,
> Thierry
> www.tjkdesign.com | www.ez-css.org | @thierrykoblentz

I've figured out a solution. Thanks for the replies, they are very  
helpful.

GS




> __
> css-discuss [cs...@lists.css-discuss.org]
> http://www.css-discuss.org/mailman/listinfo/css-d
> List wiki/FAQ -- http://css-discuss.incutio.com/
> List policies -- http://css-discuss.org/policies.html
> Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] CSS tooltip bug ONLY in FF and Chrome

2010-06-03 Thread Greg Smith

On Jun 3, 2010, at 12:23 PM, Peter Bradley wrote:

> Ar 03/06/10 20:09, ysgrifennodd Peter Bradley :
>>
>> The validator gives 117 errors, Greg.  I guess that this means that
>> different browsers are going to try to recover in different ways.   
>> They
>> don't look too hard to cure.  Many of them are to do with the product
>> table you've included as a comment.  Getting rid of that might get  
>> rid
>> of a lot of them.  Then there's the usual crop of missing alt
>> attributes, which I wouldn't think are affecting your layout; but
>> there's also a fair few where you appear to have used elements in  
>> places
>> where they're not allowed.
>>
>> I'd have a go myself, but I'm a bit busy at the moment.  If it was  
>> me,
>> though, that's where I'd start.  The worst that can happen is that  
>> it'll
>> give you a clean basis to work on.
>>
>> Cheers
>>
>>
>> Peter
>>
>>
> Couldn't resist a little play!
>
> Yeah.  Cutting out the commented product table reduces the errors to  
> 38
> or so.  Your main problem then is that you have block elements like  
> 
> and  and so on, inside inline elements - notably .  You  
> can't do
> that.  So you need to replace stuff like:
>
> A heading
>
> with something like:
>
> A heading
>
> This will likely mess up your CSS, so you'll have to mess with it to  
> get
> the look back to what it should be.
>
> After that it looks like all you'll have to worry about are some
> unclosed self-closing elements like  and some missing  
> attributes.
>
> Cheers
>
>
> Peter
>
> -- 
> http://www.peredur.net

Thanks Peter, I appreciate the input!

GS



> __
> css-discuss [cs...@lists.css-discuss.org]
> http://www.css-discuss.org/mailman/listinfo/css-d
> List wiki/FAQ -- http://css-discuss.incutio.com/
> List policies -- http://css-discuss.org/policies.html
> Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] CSS tooltip bug ONLY in FF and Chrome

2010-06-03 Thread Greg Smith
On Jun 3, 2010, at 12:14 PM, Thierry Koblentz wrote:

>> I have a class with position:relative on the 'a' tag, then absolute  
>> on
>> the hover state. The positioning doesn't work correctly in either FF
>> or Chrome. Works fine in every other browser. Haven't been able to
>> find any possible reason in my Google searches thus far. Anyone else
>> experience something like this?
>>
>> All relevant CSS has been placed in the head for debugging.
>>
>> My only possible lead so far:
>> I've placed a border around the entire 'a' tag contents, and it's not
>> wrapping around any of it. So my assumption is that these two  
>> browsers
>> are not reading the correct positioning, if that makes sense??
>>
>> LINK:
>> http://www.loctiteproducts.com/super-glues-debug.shtml
>
> For the border to show around the element try:
>
> a.tooltip {display:block;}
>
> That may also fix the behavior you're looking for.
>
> As a side note, you cannot have P (or any block-level elements) in  
> anchors.
>
>
> --
> Regards,
> Thierry
> www.tjkdesign.com | www.ez-css.org | @thierrykoblentz

I've figured out a solution. Thanks for the replies, they are very  
helpful.

GS




> __
> css-discuss [cs...@lists.css-discuss.org]
> http://www.css-discuss.org/mailman/listinfo/css-d
> List wiki/FAQ -- http://css-discuss.incutio.com/
> List policies -- http://css-discuss.org/policies.html
> Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] CSS tooltip bug ONLY in FF and Chrome

2010-06-03 Thread Peter Bradley
Ar 03/06/10 20:09, ysgrifennodd Peter Bradley :
>
> The validator gives 117 errors, Greg.  I guess that this means that
> different browsers are going to try to recover in different ways.  They
> don't look too hard to cure.  Many of them are to do with the product
> table you've included as a comment.  Getting rid of that might get rid
> of a lot of them.  Then there's the usual crop of missing alt
> attributes, which I wouldn't think are affecting your layout; but
> there's also a fair few where you appear to have used elements in places
> where they're not allowed.
>
> I'd have a go myself, but I'm a bit busy at the moment.  If it was me,
> though, that's where I'd start.  The worst that can happen is that it'll
> give you a clean basis to work on.
>
> Cheers
>
>
> Peter
>
>
Couldn't resist a little play!

Yeah.  Cutting out the commented product table reduces the errors to 38 
or so.  Your main problem then is that you have block elements like  
and  and so on, inside inline elements - notably .  You can't do 
that.  So you need to replace stuff like:

A heading

with something like:

A heading

This will likely mess up your CSS, so you'll have to mess with it to get 
the look back to what it should be.

After that it looks like all you'll have to worry about are some 
unclosed self-closing elements like  and some missing attributes.

Cheers


Peter

-- 
http://www.peredur.net

__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] CSS tooltip bug ONLY in FF and Chrome

2010-06-03 Thread Thierry Koblentz
> I have a class with position:relative on the 'a' tag, then absolute on
> the hover state. The positioning doesn't work correctly in either FF
> or Chrome. Works fine in every other browser. Haven't been able to
> find any possible reason in my Google searches thus far. Anyone else
> experience something like this?
> 
> All relevant CSS has been placed in the head for debugging.
> 
> My only possible lead so far:
> I've placed a border around the entire 'a' tag contents, and it's not
> wrapping around any of it. So my assumption is that these two browsers
> are not reading the correct positioning, if that makes sense??
> 
> LINK:
> http://www.loctiteproducts.com/super-glues-debug.shtml

For the border to show around the element try:

a.tooltip {display:block;}

That may also fix the behavior you're looking for.

As a side note, you cannot have P (or any block-level elements) in anchors.


--
Regards,
Thierry
www.tjkdesign.com | www.ez-css.org | @thierrykoblentz


__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] CSS tooltip bug ONLY in FF and Chrome

2010-06-03 Thread Peter Bradley
Ar 03/06/10 19:51, ysgrifennodd Greg Smith :
> I have a class with position:relative on the 'a' tag, then absolute on
> the hover state. The positioning doesn't work correctly in either FF
> or Chrome. Works fine in every other browser. Haven't been able to
> find any possible reason in my Google searches thus far. Anyone else
> experience something like this?
>
> All relevant CSS has been placed in the head for debugging.
>
> My only possible lead so far:
> I've placed a border around the entire 'a' tag contents, and it's not
> wrapping around any of it. So my assumption is that these two browsers
> are not reading the correct positioning, if that makes sense??
>
> LINK:
> http://www.loctiteproducts.com/super-glues-debug.shtml
>
> Thanks,
> GS
>
>
>

The validator gives 117 errors, Greg.  I guess that this means that 
different browsers are going to try to recover in different ways.  They 
don't look too hard to cure.  Many of them are to do with the product 
table you've included as a comment.  Getting rid of that might get rid 
of a lot of them.  Then there's the usual crop of missing alt 
attributes, which I wouldn't think are affecting your layout; but 
there's also a fair few where you appear to have used elements in places 
where they're not allowed.

I'd have a go myself, but I'm a bit busy at the moment.  If it was me, 
though, that's where I'd start.  The worst that can happen is that it'll 
give you a clean basis to work on.

Cheers


Peter

-- 
http://www.peredur.net

__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] CSS tooltip bug ONLY in FF and Chrome

2010-06-03 Thread Greg Smith
I have a class with position:relative on the 'a' tag, then absolute on  
the hover state. The positioning doesn't work correctly in either FF  
or Chrome. Works fine in every other browser. Haven't been able to  
find any possible reason in my Google searches thus far. Anyone else  
experience something like this?

All relevant CSS has been placed in the head for debugging.

My only possible lead so far:
I've placed a border around the entire 'a' tag contents, and it's not  
wrapping around any of it. So my assumption is that these two browsers  
are not reading the correct positioning, if that makes sense??

LINK:
http://www.loctiteproducts.com/super-glues-debug.shtml

Thanks,
GS


css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/