|
|
| Dan Galfano 2005-10-17, 6:16 pm |
| I only changed one css to add the margin on the bottom for the topnav. Why
all of a sudden, the dropdown doesn't work in IE. It works in firefox, and
used to work in IE.
http://www.petpiazza.com/testing/2006/oz.asp
Thanks!
Dan
| |
| Osgood 2005-10-17, 6:16 pm |
| Dan Galfano wrote:
> I only changed one css to add the margin on the bottom for the topnav. Why
> all of a sudden, the dropdown doesn't work in IE. It works in firefox, and
> used to work in IE.
>
> http://www.petpiazza.com/testing/2006/oz.asp
It does work, only its disappeared behind the search <div>
I don't know how those goofy MM menus work but I would assumne as your
..subglobalNav is 'absolutely' positioned then you need to declare
top/left co-ordinates, as below. At the moment you have none.
..subglobalNav{
position: absolute;
top: 120px;
left: 0px;
height: 20px;
/*width: 100%;*/
min-width: 640px;
padding: 0px 0px 5px 10px;
visibility: hidden;
color: #336699;
}
| |
| Osgood 2005-10-17, 6:16 pm |
| Dan Galfano wrote:
> I only changed one css to add the margin on the bottom for the topnav. Why
> all of a sudden, the dropdown doesn't work in IE. It works in firefox, and
> used to work in IE.
>
> http://www.petpiazza.com/testing/2006/oz.asp
You might want to consider also altering the y co-ordinates in the
javascript which controls the 'off' state of the menus. At the moment
you have to mouse quite a distance 'up' from the trigger link for the
menu to disappear. Setting a higher value in the case below, 100, will
result in the menu being closed down quicker.
function closesubnav(event){
if ((event.clientY <100)||(event.clientY > 167)){
I beleive these mneus are seriously floored somewhere along the line,
unless MM updated them recently. Murray can tell ya about them as he has
written a tutorial covering how they work and how they dont.
| |
| Murray *TMM* 2005-10-17, 6:16 pm |
| Rip them out completely and replace them with simple show-hide layer menus.
--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================
"Osgood" <notavailable@atthisaddress.com> wrote in message
news:dj0c7f$mmi$1@forums.macromedia.com...
> Dan Galfano wrote:
>
>
> You might want to consider also altering the y co-ordinates in the
> javascript which controls the 'off' state of the menus. At the moment you
> have to mouse quite a distance 'up' from the trigger link for the menu to
> disappear. Setting a higher value in the case below, 100, will result in
> the menu being closed down quicker.
>
>
> function closesubnav(event){
> if ((event.clientY <100)||(event.clientY > 167)){
>
>
> I beleive these mneus are seriously floored somewhere along the line,
> unless MM updated them recently. Murray can tell ya about them as he has
> written a tutorial covering how they work and how they dont.
>
>
>
>
>
| |
| Dan Galfano 2005-10-17, 6:16 pm |
| how would I go about that? Have a tutorial handy?
Dan
"Murray *TMM*" <forums@HAHAgreat-web-sights.com> wrote in message
news:dj0ce1$muu$1@forums.macromedia.com...
> Rip them out completely and replace them with simple show-hide layer
> menus.
>
> --
> Murray --- ICQ 71997575
> Team Macromedia Volunteer for Dreamweaver
> (If you *MUST* email me, don't LAUGH when you do so!)
> ==================
> http://www.dreamweavermx-templates.com - Template Triage!
> http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
> http://www.dwfaq.com - DW FAQs, Tutorials & Resources
> http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
> ==================
>
>
> "Osgood" <notavailable@atthisaddress.com> wrote in message
> news:dj0c7f$mmi$1@forums.macromedia.com...
>
>
| |
| Dan Galfano 2005-10-17, 6:16 pm |
| I took it from the css page example in DW8. I'd hope it would be updated to
work if they had it as an example.
"Osgood" <notavailable@atthisaddress.com> wrote in message
news:dj0c7f$mmi$1@forums.macromedia.com...
> Dan Galfano wrote:
>
>
> You might want to consider also altering the y co-ordinates in the
> javascript which controls the 'off' state of the menus. At the moment you
> have to mouse quite a distance 'up' from the trigger link for the menu to
> disappear. Setting a higher value in the case below, 100, will result in
> the menu being closed down quicker.
>
>
> function closesubnav(event){
> if ((event.clientY <100)||(event.clientY > 167)){
>
>
> I beleive these mneus are seriously floored somewhere along the line,
> unless MM updated them recently. Murray can tell ya about them as he has
> written a tutorial covering how they work and how they dont.
>
>
>
>
>
| |
| Osgood 2005-10-17, 6:16 pm |
| Murray *TMM* wrote:
> Rip them out completely and replace them with simple show-hide layer menus.
>
lol
| |
| Dan Galfano 2005-10-17, 6:16 pm |
| BTW, Thanks Osgood! That worked.
Dan
"Osgood" <notavailable@atthisaddress.com> wrote in message
news:dj0c7f$mmi$1@forums.macromedia.com...
> Dan Galfano wrote:
>
>
> You might want to consider also altering the y co-ordinates in the
> javascript which controls the 'off' state of the menus. At the moment you
> have to mouse quite a distance 'up' from the trigger link for the menu to
> disappear. Setting a higher value in the case below, 100, will result in
> the menu being closed down quicker.
>
>
> function closesubnav(event){
> if ((event.clientY <100)||(event.clientY > 167)){
>
>
> I beleive these mneus are seriously floored somewhere along the line,
> unless MM updated them recently. Murray can tell ya about them as he has
> written a tutorial covering how they work and how they dont.
>
>
>
>
>
| |
| Osgood 2005-10-17, 6:16 pm |
| Dan Galfano wrote:
> I took it from the css page example in DW8. I'd hope it would be updated to
> work if they had it as an example.
You hope for too much. Im actually not sure what the issue is unless I
do some delving around a bit. I think they only work between various y
co-ordinates so if the user enlarges the text they fail, something like
that anyway.
| |
| Dan Galfano 2005-10-17, 6:16 pm |
| maybe. I'm not even sure I'm 100% happy with this version of a topnav
anyway...I know TJK has a good css dropdown that I was looking at too. I
guess I'll see what Murray has to say as well. Of course, close to (if not)
100% functionality is what I want over anything.
"Osgood" <notavailable@atthisaddress.com> wrote in message
news:dj0dbh$of3$1@forums.macromedia.com...
> Dan Galfano wrote:
>
>
> You hope for too much. Im actually not sure what the issue is unless I do
> some delving around a bit. I think they only work between various y
> co-ordinates so if the user enlarges the text they fail, something like
> that anyway.
>
>
>
>
| |
|
|
|
|
| Murray *TMM* 2005-10-17, 6:16 pm |
| No. Either would be fine. Just don't use the boneheaded method in the Halo
templates. 8)
--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================
"Dan Galfano" <daniel@galfanodesign.com> wrote in message
news:dj0e1c$pgp$1@forums.macromedia.com...
> That's what I thought you meant. I've used those before...Is there a
> reason you like using this rather than something like
> http://www.tjkdesign.com/articles/dropdown/default.asp?
>
>
> "Murray *TMM*" <forums@HAHAgreat-web-sights.com> wrote in message
> news:dj0drh$p8t$1@forums.macromedia.com...
>
>
| |
| Dan Galfano 2005-10-17, 6:16 pm |
| Gotcha....Thanks!
back to work...
"Murray *TMM*" <forums@HAHAgreat-web-sights.com> wrote in message
news:dj0e3p$pjr$1@forums.macromedia.com...
> No. Either would be fine. Just don't use the boneheaded method in the
> Halo templates. 8)
>
> --
> Murray --- ICQ 71997575
> Team Macromedia Volunteer for Dreamweaver
> (If you *MUST* email me, don't LAUGH when you do so!)
> ==================
> http://www.dreamweavermx-templates.com - Template Triage!
> http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
> http://www.dwfaq.com - DW FAQs, Tutorials & Resources
> http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
> ==================
>
>
> "Dan Galfano" <daniel@galfanodesign.com> wrote in message
> news:dj0e1c$pgp$1@forums.macromedia.com...
>
>
|
|
|
|
| Copyright 2003 - 2008 forum4designers.com Software forum Computer Hardware reviews |