John, 
Is there a tutorial that explains how to make the third lvl of this menu
system work properly?  I've been playing with it now for a while and no
luck.  Right now when I mouse over "About" menu item on the first lvl the
second and third lvl pops out (view attachment).  I admit I'm not a CSS
guru.  I'm sure I will figure it out, if anyone can speed this process up
for me that would be appreciated.  Thank you...sorry for posting a lot of
questions today!  

Ron  

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of John Ivanoff
Sent: Monday, November 21, 2005 12:19 PM
To: Dallas/Fort Worth ColdFusion User Group Mailing List
Subject: Re: [DFW CFUG] cf_msmenu question

D'oh
http://www.alistapart.com/articles/horizdropdowns/

On 11/21/05, Ron Mast <[EMAIL PROTECTED]> wrote:
> John, when I click on that link, it takes me to the menu, but no
> reading.  I viewed source and I get this following:
> <script type="text/javascript" src="drop_down.js"></script>
> <style type="text/css">
> @import "style3.css";
> </style>
>
> Do you have these available for me to look at?
>
> Thanks,
>
> Ron Mast
> Webmaster
> Truth Hardware
> Ph: 507-444-4748
> Fx: 507-444-5361
> www.truth.com
> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of John Ivanoff
> Sent: Monday, November 21, 2005 10:28 AM
> To: Dallas/Fort Worth ColdFusion User Group Mailing List
> Subject: Re: [DFW CFUG] cf_msmenu question
>
> here's some reading...
> http://www.alistapart.com/d/horizdropdowns/horizontal.htm
>
>
> On 11/21/05, Ron Mast <[EMAIL PROTECTED]> wrote:
> > Hi Duane,
> > I went back to my CSS menu, but now my problem is viewing in Firefox.
> > My menu works great in IE, but not in Firefox or Netscape.  It's kind
> of
> > a big surprise because it's in CSS.
> >
> > Here's the CSS code:
> > <style type="text/css" media="screen">
> >         #container
> >         {
> >                 width: 90%;
> >                 margin: 0px auto;
> >                 background-color: #E1E1F9;
> >                 color: #333;
> >                 border: 1px solid black;
> >         }
> >
> >         #menuSystem
> >         {
> >                 width: 160px;
> >         }
> >
> >         /* Menu System */
> >         #nav, #nav ul {
> >                 float: left;
> >                 width: 7em;
> >                 list-style: none;
> >                 line-height: 1.2;
> >                 font-family: arial,helvetica,sans-serif;
> >                 font-size: 11px;
> >                 background: #2F348F;
> >                 font-weight: bold;
> >                 padding: 0;
> >                 border: white;
> >                 border-width: 0px 0px;
> >                 margin: 0em 0 0 0em; /* Changes the location of the
> > whole menu system. */
> >         }
> >
> >         #nav a {
> >                 display: block;
> >                 width: 10em;
> >                 w\idth: 14.3em; /* Controls the width of the main menu
> > system */
> >                 color: white; /* Color of the menu text */
> >                 font-weight: bold;
> >                 border: 1px solid black;
> >                 text-decoration: none;
> >                 padding: .1em 1em;
> >         }
> >
> >         #nav li {
> >                 float: left;
> >                 padding: 0;
> >                 width: 10em;
> >         }
> >
> >         #nav li ul {
> >                 position: absolute;
> >                 left: -999em;
> >                 height: auto;
> >                 w\idth: 10em;
> >                 border: 1px solid black;
> >                 font-weight: normal;
> >                 border-width: 0.0em; /* Controls the thickness of the
> > border around the submenu. */
> >                 margin: -1.90em 14.2em; /* This changes the location
> of
> > the first submenu selection. */
> >         }
> >
> >         #nav li li {
> >                 padding-right: 0em; /* Controls the background width
> of
> > the submenu */
> >                 width: 10em
> >         }
> >
> >         #nav li ul a {
> >                 width: 13em;
> >                 w\idth: 16em; /* Changes the width of the submenu
> > system, allowing you to fit description on one line */
> >         }
> >
> >         #nav li ul ul {
> >                 margin: -1.9em 0 0 15.9em; /* This is the line of code
> > you can change to change the submenu's content location when it pops
> up.
> > 3RD LEVEL */
> >         }
> >
> >         #nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover
> ul
> > ul, #nav li.sfhover ul ul ul {
> >                 left: -999em;
> >         }
> >
> >         #nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul,
> > #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul {
> >                 left: auto;
> >         }
> >
> >         #nav li:hover, #nav li.sfhover {
> >                 background: #7C80D1; /* Change the color of the hover
> > over background of the menu */
> >         }
> > </style>
> >
> > <script type="text/javascript"><!--//--><![CDATA[//><!--
> >
> > sfHover = function() {
> >         var sfEls =
> > document.getElementById("nav").getElementsByTagName("LI");
> >         for (var i=0; i<sfEls.length; i++) {
> >                 sfEls[i].onmouseover=function() {
> >                         this.className+=" sfhover";
> >                 }
> >                 sfEls[i].onmouseout=function() {
> >                         this.className=this.className.replace(new
> > RegExp(" sfhover\\b"), "");
> >                 }
> >         }
> > }
> > if (window.attachEvent) window.attachEvent("onload", sfHover);
> >
> > ------------------------------------
> >
> > Here's the menu:
> >                 <DIV ID="MENUSYSTEM">
> >                         <UL ID="NAV">
> >                                 <LI><A HREF="INDEX.CFM">HOME</A></LI>
> >                                 <LI><A HREF="#">NEWS</A>
> >                                         <UL>
> >                                                 <LI><A
> > HREF="LATESTNEWS.CFM">LATEST NEWS</A>
> >                                                         <UL>
> >                                                                 <LI><A
> > HREF="#">TEST</A></LI>
> >                                                         </UL>
> >                                                 </LI>
> >                                                 <LI><A
> > HREF="MEDIAINFO.CFM">MEDIA INFO</A></LI>
> >                                                 <LI><A
> > HREF="NEWSARCHIVE.CFM">NEWS ARCHIVE</A></LI>
> >                                         </UL>
> >                                 </LI>
> >                                 <LI><A HREF="#">TEAM</A>
> >                                         <UL>
> >                                                 <LI><A
> > HREF="ROSTER.CFM">ROSTER</A></LI>
> >                                                 <LI><A
> > HREF="PLAYERBIOS.CFM">PLAYER BIOS</A></LI>
> >                                                 <LI><A
> > HREF="COACHPROFILE.CFM">COACH PROFILE</A></LI>
> >                                                 <LI><A
> > HREF="STAFFPROFILES.CFM">STAFF PROFILES</A></LI>
> >                                                 <LI><A
> > HREF="TRYOUTS.CFM">TRYOUTS</A></LI>
> >                                         </UL>
> >                                 </LI>
> >                                 <LI><A HREF="#">SPONSORS</A>
> >                                         <UL>
> >                                                 <LI><A
> > HREF="OVERVIEW.CFM">OVERVIEW</A></LI>
> >                                                 <LI><A
> > HREF="PACKAGES.CFM">PACKAGES</A></LI>
> >                                                 <LI><A
> > HREF="SPONSORLINKS.CFM">SPONSOR LINKS</A></LI>
> >                                         </UL>
> >                                 </LI>
> >                                 <LI><A HREF="#">TICKETS</A>
> >                                         <UL>
> >                                                 <LI><A
> > HREF="OVERVIEWANDPACKAGES.CFM">OVERVIEW & PACKAGES</A></LI>
> >                                                 <LI><A
> > HREF="SEASONTICKETAPP.CFM">SEASON TICKET APP.</A></LI>
> >                                                 <LI><A
> > HREF="SEATINGCHART.CFM">SEATING CHART</A></LI>
> >                                                 <LI><A
> > HREF="SPECIALS.CFM">SPECIALS</A></LI>
> >                                                 <LI><A
> > HREF="FOURSEASONSPROFILE.CFM">FOUR SEASONS PROFILE</A></LI>
> >
> >                                         </UL>
> >                                 </LI>
> >                                 <LI><A HREF="#">FAN ZONE</A>
> >                                         <UL>
> >                                                 <LI><A
> > HREF="PHOTOS.CFM">PHOTOS</A></LI>
> >                                                 <LI><A
> > HREF="MERCHANDISE.CFM">MERCHANDISE</A></LI>
> >                                                 <LI><A
> > HREF="LISTENLIVE.CFM">LISTEN LIVE</A></LI>
> >                                                 <LI><A
> > HREF="BOOSTERCLUB.CFM">BOOSTER CLUB</A></LI>
> >                                                 <LI><A
> > HREF="WALLPAPER.CFM">WALLPAPER</A></LI>
> >                                         </UL>
> >                                 </LI>
> >                                 <LI><A HREF="#">COMMUNITY</A>
> >                                         <UL>
> >                                                 <LI><A
> > HREF="OWNERSPROFILE.CFM">OWNERS PROFILE</A></LI>
> >                                                 <LI><A
> > HREF="HOSTFAMILIES.CFM">HOST FAMILIES</A></LI>
> >                                                 <LI><A
> > HREF="VOLUNTEEROPS.CFM">VOLUNTEER OPS</A></LI>
> >                                                 <LI><A
> > HREF="APPEARANCES.CFM">APPEARANCES</A></LI>
> >                                                 <LI><A
> > HREF="SPECIALEVENTS.CFM">SPECIAL EVENTS</A></LI>
> >
> >                                         </UL>
> >                                 </LI>
> >                                 <LI><A
> > HREF="SCHEDULE.CFM">SCHEDULE</A></LI>
> >                                 <LI><A HREF="STATSSERVICE.CFM"
> > TARGET="_BLANK">STATISTICS</A></LI>
> >                                 <LI><A
> > HREF="HTTP://WWW.NAHL.COM/">NAHL</A></LI>
> >
> >                                 <LI><A HREF="CONTACT.CFM">CONTACT
> > US</A></LI>
> >                         </UL>
> >                 </DIV>
> >
> > ------------------------------------
> > Here's the site I'm working on incase anyone wants to view it to help
> me
> > solve this browser menu incompatibility issue.
> >
> > www.smnexpress.com/newsite
> >
> > Thanks,
> >
> > Ron Mast
> > Webmaster
> > Truth Hardware
> > Ph: 507-444-4748
> > Fx: 507-444-5361
> > www.truth.com
> >
> > -----Original Message-----
> > From: [EMAIL PROTECTED]
> > [mailto:[EMAIL PROTECTED] On Behalf Of Duane Ronan
> > Sent: Friday, November 18, 2005 5:26 AM
> > To: Dallas/Fort Worth ColdFusion User Group Mailing List
> > Subject: Re: [DFW CFUG] cf_msmenu question
> >
> > Ron, does your menu system work properly on the Mac?
> >
> > -----Original Message-----
> > From: "Smallen, Galen" <[EMAIL PROTECTED]>
> > Date: Fri, 18 Nov 2005 05:07:25
> > To:"'Dallas/Fort Worth ColdFusion User Group Mailing List'"
> > <[EMAIL PROTECTED]>
> > Subject: RE: [DFW CFUG] cf_msmenu question
> >
> > Ron,
> >
> > I am not using this menu system, I use Tigra's free menu system.  Very
> > nice
> > drop down style menus, works great with a cold fusion back end.
> >
> > Galen Smallen
> >
> > -----Original Message-----
> > From: [EMAIL PROTECTED]
> > [mailto:[EMAIL PROTECTED] Behalf Of Ron Mast
> > Sent: Thursday, November 17, 2005 4:11 PM
> > To: [EMAIL PROTECTED]
> > Subject: [DFW CFUG] cf_msmenu question
> >
> >
> > Is anyone using this menu system?  For those that are, can you please
> > show
> > me how I can have a Home link without an item?  I want to create an
> > itemless
> > link.  Any idea how I can do this with this custom tag, or is not
> > possible?
> >
> >
> >
> > Thanks,
> >
> > Ron Mast
> >
> > _______________________________________________
> > List mailing list
> > Reply to DFWCFUG:
> > [email protected]
> > Subscribe/Unsubscribe:
> > http://lists1.safesecureweb.com/mailman/listinfo/list
> > List Archive:
> > http://lists1.safesecureweb.com/mailman/private/list
> >
> > _______________________________________________
> > List mailing list
> > Reply to DFWCFUG:
> > [email protected]
> > Subscribe/Unsubscribe:
> > http://lists1.safesecureweb.com/mailman/listinfo/list
> > List Archive:
> > http://lists1.safesecureweb.com/mailman/private/list
> >
> >
> > Sent via BlackBerry from Cingular Wireless
> >
> > _______________________________________________
> > List mailing list
> > Reply to DFWCFUG:
> > [email protected]
> > Subscribe/Unsubscribe:
> > http://lists1.safesecureweb.com/mailman/listinfo/list
> > List Archive:
> > http://lists1.safesecureweb.com/mailman/private/list
> >
> > _______________________
> > This e-mail and any files transmitted with it are confidential and are
> intended solely for the use of the individual to whom they are
> addressed.  If you are not the intended recipient or the individual
> responsible for delivering the e-mail to the intended recipient, please
> be advised that you have received this e-mail in error and that any use,
> dissemination, forwarding, printing, or copying of this e-mail is
> strictly prohibited.
> >
> >
> > _______________________________________________
> > List mailing list
> > Reply to DFWCFUG:
> > [email protected]
> > Subscribe/Unsubscribe:
> > http://lists1.safesecureweb.com/mailman/listinfo/list
> > List Archive:
> > http://lists1.safesecureweb.com/mailman/private/list
> >
>
> _______________________________________________
> List mailing list
> Reply to DFWCFUG:
> [email protected]
> Subscribe/Unsubscribe:
> http://lists1.safesecureweb.com/mailman/listinfo/list
> List Archive:
> http://lists1.safesecureweb.com/mailman/private/list
>
> _______________________________________________
> List mailing list
> Reply to DFWCFUG:
> [email protected]
> Subscribe/Unsubscribe:
> http://lists1.safesecureweb.com/mailman/listinfo/list
> List Archive:
> http://lists1.safesecureweb.com/mailman/private/list
>

_______________________________________________
List mailing list
Reply to DFWCFUG: 
[email protected]
Subscribe/Unsubscribe: 
http://lists1.safesecureweb.com/mailman/listinfo/list
List Archive: 
http://lists1.safesecureweb.com/mailman/private/list

<<attachment: menu_Example.jpg>>

_______________________________________________
List mailing list
Reply to DFWCFUG: 
[email protected]
Subscribe/Unsubscribe: 
http://lists1.safesecureweb.com/mailman/listinfo/list
List Archive: 
http://lists1.safesecureweb.com/mailman/private/list

Reply via email to