Flicker
am 20.11.2007 18:09:07 von ShellyDoesn't anyone have a suggestion for the IE6 flicker problem when mousing
over menus quickly?
I tried the Javascript solution I found but it didn't work. It was to put
this in the
--
Shelly
Doesn't anyone have a suggestion for the IE6 flicker problem when mousing
over menus quickly?
I tried the Javascript solution I found but it didn't work. It was to put
this in the
Shelly wrote:
> Doesn't anyone have a suggestion for the IE6 flicker problem when mousing
> over menus quickly?
>
> I tried the Javascript solution I found but it didn't work. It was to put
> this in the
Els wrote:
> Shelly wrote:
>
>> Doesn't anyone have a suggestion for the IE6 flicker problem when
>> mousing over menus quickly?
>>
>> I tried the Javascript solution I found but it didn't work. It was
>> to put this in the
Shelly wrote:
> Els wrote:
>> Shelly wrote:
>>
>>> Doesn't anyone have a suggestion for the IE6 flicker problem when
>>> mousing over menus quickly?
>>>
>>> I tried the Javascript solution I found but it didn't work. It was
>>> to put this in the
Els wrote:
> Shelly wrote:
>> Els wrote:
>>> Shelly wrote:
>>>
>>>> Doesn't anyone have a suggestion for the IE6 flicker problem when
>>>> mousing over menus quickly?
>>>>
>>>> I tried the Javascript solution I found but it didn't work. It was
>>>> to put this in the
Well bust mah britches and call me cheeky, on Tue, 20 Nov 2007 19:45:37
GMT Shelly scribed:
>> If you can give a URL, someone else might see/know what is happening
>> and give you a solution.
>
> I did in the first post (not this thread). It is
> www.festivalnetwork.com/events.php Do it in IE6. There is no
> problem in IE7 and FF. To make it happen more quickly, expand the
> Events by Region by clicking on it. This happens with top level and
> sub menus. Just move the mouse up and down over the menu quickly.
I did this with some css in your stylesheet:
#SideLink a:hover {
color: #FFFFFF;
text-decoration:none;
XXpadding: 3px 0 0 0;
text-align:left;
text-indent: 5px;
}
(Notice the XX - a temp. negation) and it stopped flickering on a
downloaded copy.
--
Bone Ur
Cavemen have formidable pheromones.
Bone Ur wrote:
> Well bust mah britches and call me cheeky, on Tue, 20 Nov 2007
> 19:45:37 GMT Shelly scribed:
>
>>> If you can give a URL, someone else might see/know what is happening
>>> and give you a solution.
>>
>> I did in the first post (not this thread). It is
>> www.festivalnetwork.com/events.php Do it in IE6. There is no
>> problem in IE7 and FF. To make it happen more quickly, expand the
>> Events by Region by clicking on it. This happens with top level and
>> sub menus. Just move the mouse up and down over the menu quickly.
>
> I did this with some css in your stylesheet:
>
> #SideLink a:hover {
> color: #FFFFFF;
> text-decoration:none;
> XXpadding: 3px 0 0 0;
> text-align:left;
> text-indent: 5px;
> }
>
> (Notice the XX - a temp. negation) and it stopped flickering on a
> downloaded copy.
Awesome!!!! I thank you ever so much. I put it in exactly as you have it
above. Can you please explain in a little more detail (for my education)
just what putting XX in front does?
--
Shelly
Well bust mah britches and call me cheeky, on Tue, 20 Nov 2007 21:45:32
GMT Shelly scribed:
>>>> If you can give a URL, someone else might see/know what is
>>>> happening and give you a solution.
>>>
>>> I did in the first post (not this thread). It is
>>> www.festivalnetwork.com/events.php Do it in IE6. There is no
>>> problem in IE7 and FF. To make it happen more quickly, expand the
>>> Events by Region by clicking on it. This happens with top level and
>>> sub menus. Just move the mouse up and down over the menu quickly.
>>
>> I did this with some css in your stylesheet:
>>
>> #SideLink a:hover {
>> color: #FFFFFF;
>> text-decoration:none;
>> XXpadding: 3px 0 0 0;
>> text-align:left;
>> text-indent: 5px;
>> }
>>
>> (Notice the XX - a temp. negation) and it stopped flickering on a
>> downloaded copy.
>
> Awesome!!!! I thank you ever so much. I put it in exactly as you
> have it above. Can you please explain in a little more detail (for my
> education) just what putting XX in front does?
It's just a cheater way of removing the line from counting. Browsers don't
parse malformed css so this is like eliminating it. I wouldn't advise
publishing the page that way; remove the line or change it so it no longer
has the bad effect. -And you're quite welcome.
--
Bone Ur
Cavemen have formidable pheromones.
Bone Ur wrote:
>>> XXpadding: 3px 0 0 0;
/* padding: 3px 0 0 0; */
> It's just a cheater way of removing the line from counting. Browsers
> don't parse malformed css so this is like eliminating it. I wouldn't
> advise publishing the page that way; remove the line or change it so
> it no longer has the bad effect. -And you're quite welcome.
Using comment markers to 'remove' it is better.
doubt as to your intentions, and also protects you from next year's
browser, which might disregard /all/ CSS from that point on.
--
-bts
-Motorcycles defy gravity; cars just suck
Beauregard T. Shagnasty wrote:
> Bone Ur wrote:
>
>>>> XXpadding: 3px 0 0 0;
>
> /* padding: 3px 0 0 0; */
>
>> It's just a cheater way of removing the line from counting. Browsers
>> don't parse malformed css so this is like eliminating it. I wouldn't
>> advise publishing the page that way; remove the line or change it so
>> it no longer has the bad effect. -And you're quite welcome.
>
> Using comment markers to 'remove' it is better.
> doubt as to your intentions, and also protects you from next year's
> browser, which might disregard /all/ CSS from that point on.
I'm using a beta of Next Year's Browser. Damned think can't even *find*
this year's web sites... ;)
--
Blinky
Killing all posts from Google Groups
The Usenet Improvement Project - http://improve-usenet.org
Well bust mah britches and call me cheeky, on Wed, 21 Nov 2007 03:06:49 GMT
Beauregard T. Shagnasty scribed:
>>>> XXpadding: 3px 0 0 0;
>
> /* padding: 3px 0 0 0; */
>
>> It's just a cheater way of removing the line from counting. Browsers
>> don't parse malformed css so this is like eliminating it. I wouldn't
>> advise publishing the page that way; remove the line or change it so
>> it no longer has the bad effect. -And you're quite welcome.
>
> Using comment markers to 'remove' it is better.
> doubt as to your intentions, and also protects you from next year's
> browser, which might disregard /all/ CSS from that point on.
Agreed. I use it only for "easier" preliminary testing on browsers whose
reactions I know from experience. (Saves keystrokes.)
For any permanent change, the line should be dealt with correctly.
--
Bone Ur
Cavemen have formidable pheromones.
Bone Ur wrote:
> Well bust mah britches and call me cheeky, on Wed, 21 Nov 2007
> 03:06:49 GMT Beauregard T. Shagnasty scribed:
>
>>>>> XXpadding: 3px 0 0 0;
>>
>> /* padding: 3px 0 0 0; */
>>
>>> It's just a cheater way of removing the line from counting.
>>> Browsers don't parse malformed css so this is like eliminating it.
>>> I wouldn't advise publishing the page that way; remove the line or
>>> change it so it no longer has the bad effect. -And you're quite
>>> welcome.
>>
>> Using comment markers to 'remove' it is better.
>> no doubt as to your intentions, and also protects you from next
>> year's browser, which might disregard /all/ CSS from that point on.
>
> Agreed. I use it only for "easier" preliminary testing on browsers
> whose reactions I know from experience. (Saves keystrokes.)
>
> For any permanent change, the line should be dealt with correctly.
What I normally do to eliminate a line but not remove it is to enclose it in
a /* */ set.
As far as handling it correctly, what was wrong with the line:
padding: 3px 0 0 0;
that caused it to flicker?
--
Shelly
Well bust mah britches and call me cheeky, on Wed, 21 Nov 2007 18:24:38
GMT Shelly scribed:
>>>>>> XXpadding: 3px 0 0 0;
>>>
>>> /* padding: 3px 0 0 0; */
>>>
>>>> It's just a cheater way of removing the line from counting.
>>>> Browsers don't parse malformed css so this is like eliminating it.
>>>> I wouldn't advise publishing the page that way; remove the line or
>>>> change it so it no longer has the bad effect. -And you're quite
>>>> welcome.
>>>
>>> Using comment markers to 'remove' it is better.
>>> no doubt as to your intentions, and also protects you from next
>>> year's browser, which might disregard /all/ CSS from that point on.
>>
>> Agreed. I use it only for "easier" preliminary testing on browsers
>> whose reactions I know from experience. (Saves keystrokes.)
>>
>> For any permanent change, the line should be dealt with correctly.
>
> What I normally do to eliminate a line but not remove it is to enclose
> it in a /* */ set.
That's the right way to comment-out a line in the