Re: [WSG] Pure CSS Pop-ups using images... but as background-images in span

2005-07-27 Thread Julián Landerreche
M, I think the solution is here... http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp but I cant get it to work yet in IE. My set of rules are div.maincont a { position: relative; } div.maincont a span { display: none; } div.maincont a:hover span { text-indent: 0;

Re: [WSG] Pure CSS Pop-ups using images... but as background-images in span

2005-07-27 Thread Julián Landerreche
Hi, Well, Now, I have understood the solution. I need to add a property to the a:hover rule. a:hover { border: none; } Voilà! Now it works in IE6... Weird, weird bug... Julián Julián Landerreche wrote: Hi, I'm playing with both Pure CSS Popup technics developed by Eric Meyer.

Re: [WSG] Pure CSS Pop-ups using images... but as background-images in span

2005-07-26 Thread Ingo Chao
Julián Landerreche schrieb: Now, I have understood the solution. I need to add a property to the a:hover rule. a:hover { border: none; } Voilà! Now it works in IE6... Weird, weird bug... Yes, that's weird. Maybe this http://www.satzansatz.de/cssd/pseudocss.html#hoverdesc will be of

[WSG] Pure CSS Pop-ups using images... but as background-images in span

2005-07-25 Thread Julián Landerreche
Hi, I'm playing with both Pure CSS Popup technics developed by Eric Meyer. http://www.meyerweb.com/eric/css/edge/popups/demo.html http://www.meyerweb.com/eric/css/edge/popups/demo2.html I'm wondering if there is any issue by doing a merging between both technics. I want to show popup images,

Re: [WSG] Pure CSS Pop-ups using images... but as background-images in span

2005-07-25 Thread Julián Landerreche
Hi, Well, Now, I have understood the solution. I need to add a property to the a:hover rule. a:hover { border: none; } Voilà! Now it works in IE6... Weird, weird bug... Julián Julián Landerreche wrote: Hi, I'm playing with both Pure CSS Popup technics developed by Eric Meyer.

Re: [WSG] Pure CSS Pop-ups using images... but as background-images in span

2005-07-25 Thread Terrence Wood
an actual live example will help because if your CSS is the same as Eric's then the problem lies in your html -- e.g. it could be a doctype issue. position:relative on your 'a' delcaration might help. kind regards Terrence Wood. On 26 Jul 2005, at 2:30 PM, Julián Landerreche wrote: But it