Page 1 of 2 12 LastLast
Results 1 to 10 of 754

Hybrid View

  1. #1
    Join Date
    Jul 2008
    Posts
    362
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    Quote Originally Posted by ckosloff View Post
    There are quirks in IE that we cannot fix, we just have to live with them.
    Try this, post #144, maybe the new version of htc can fix it.
    Sorry, I don't have time to test now, my site is in trouble with PCI-compliance.
    Thanks for the reply cklosloff!

    I have updated the htc file as per the link but im at work atm and dont have access to a machine with IE7 (using linux) Can anyone test for me?

  2. #2
    Join Date
    Feb 2007
    Location
    South Florida, USA
    Posts
    1,374
    Plugin Contributions
    4

    Default Re: Support for CSS Flyout Menu

    Quote Originally Posted by gee38l View Post
    Thanks for the reply cklosloff!

    I have updated the htc file as per the link but im at work atm and dont have access to a machine with IE7 (using linux) Can anyone test for me?
    Still not working, but if you are patient enough I will take a look at your files when I have the time. Sorry but hard-pressed now.

  3. #3
    Join Date
    Jul 2008
    Posts
    362
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    Quote Originally Posted by ckosloff View Post
    Still not working, but if you are patient enough I will take a look at your files when I have the time. Sorry but hard-pressed now.
    Thanks for confirming! Just going insane trying to fix this issue i looked at a few websites linked in previous post and they all seem to be working fine..

    Oh and i also copied the coding from a an earlier post #20 and just changed the colours

  4. #4
    Join Date
    Jul 2008
    Posts
    362
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    ckossloff,

    Just wondering if you have had a chance to look at my problem?

    Thanks,

    gee38l

  5. #5
    Join Date
    Jul 2008
    Posts
    362
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    I just noticed that the links in IE6 seem to be working just not IE7... also the link is not the entire box in mozilla, ie6 or safari small part is cut off at the bottom.

  6. #6
    Join Date
    Jun 2006
    Location
    UK
    Posts
    65
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    I've been using zencart for several years using it to build the online store part of www.splatcooking.net . The store ( store.splatcooking.net ) is currently running on the core 1.3.8a files with a few mods added. Our production site has gathered the cruft associated with the mantra of "don't remove anything, it might break the site".

    I'm doing an end of year tidy up, trying to add nicer menus based on this mod. I have uploaded the includes and the .htc file in, I think, the appropriate places. The new stylesheet is correctly included in the sorce of the main store page. However, I don't see any change to the menus. Do I need to add any additional code to the main stylesheet?

    Regards
    Peter Glock

  7. #7
    Join Date
    Jun 2006
    Location
    UK
    Posts
    65
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    Just to add, the template is cherry_zen and I'm using Safari on a Mac to access the site.

  8. #8
    Join Date
    Nov 2005
    Posts
    157
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    the fly out work great in FF, however, there are problem in IE.

    the categories link, <a xxxx></a> has a left margin padding to it's <li> wrapper, while FF does not has that space...

    I set ul, li {padding:0; margin:0} and the spacing still there...

  9. #9
    Join Date
    Nov 2008
    Posts
    22
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    Quote Originally Posted by gee38l View Post
    Thanks for the reply cklosloff!

    I have updated the htc file as per the link but im at work atm and dont have access to a machine with IE7 (using linux) Can anyone test for me?

    Hi Gee38l

    Could you pls offer me your css Flyout file ? I want my site have the same flyout effect like yours.

    Thank you

  10. #10
    Join Date
    Jul 2008
    Posts
    362
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    Quote Originally Posted by preman View Post
    Hi Gee38l

    Could you pls offer me your css Flyout file ? I want my site have the same flyout effect like yours.

    Thank you
    HTML Code:
    body {  
             behavior: url(includes/csshover.htc);
    } /* WinIE behavior call */
    div#nav-cat {
         margin-top: 0em;
         background-color: #838367;
         width: 95%;
         margin-left: auto;
         margin-right: auto;
         font-weight: bold;
         font-size: 1.0em;
    }
    div#nav-cat ul {
             margin: 0; 
             padding: 0; 
             width: 100%; 
             background-color: #838367; 
             z-index: 1000;
    /*  border: 1px solid #AAA;*/
    }
    
    div#nav-cat ul.level2 {background-color: #c65928; width: 180px;}
    div#nav-cat ul.level3 {background-color: #c65928;}
    div#nav-cat ul.level4 {background-color: #c65928;}
    div#nav-cat ul.level5 {background-color: #c65928;}
    div#nav-cat ul.level6 {background-color: #c65928;}
    
    div#nav-cat li {
        z-index: 1; 
            position: relative; 
            list-style: none; 
            margin: 0;
        margin-top: 2px; /* change it to whatever space you want to put space between buttons*/
        border-bottom: 1px solid #CCC; /* <---this line may help or hinder IE menu shifting issues */
    }
    div#nav-cat li li {
        margin: 0; /* this overrides the margin-top in the declaration above */
    } 
    div#nav-cat li:hover {background-color: #c65928;}
    div#nav-cat li.submenu {background-color: #838367;}
    div#nav-cat li.submenu:hover {background-color: #c65928;}
    div#nav-cat li a {
            display: block; 
            padding: 0.25em 0 0.25em 0.5em;
        text-decoration: none; 
            width: 99%; 
            color: white;
    }
    
    div#nav-cat>ul a {
            width: auto;
    }
    
    div#nav-cat ul ul {
            position: absolute; top: 0; left: 100%;
        display: none; z-index: 1000;
    }
    
    div#nav-cat ul.level1 li.submenu:hover ul.level2, 
    div#nav-cat ul.level2 li.submenu:hover ul.level3,
    div#nav-cat ul.level3 li.submenu:hover ul.level4,
    div#nav-cat ul.level4 li.submenu:hover ul.level5,
    div#nav-cat ul.level5 li.submenu:hover ul.level6 {
            display:block; 
            background-color: #756783;
    This is the coding that i used from a previous post and just changed the colours....

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v151 How to uninstall CSS Horizontal Drop Down Menu (CSS Flyout Header 1.5)
    By cmike in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 15 Feb 2014, 07:39 AM
  2. Flyout Menu CSS For My Template.
    By NathanLee0921 in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 26 May 2010, 01:24 AM
  3. Extra text or image inbetween categories for css flyout menu?
    By arniesbarmyarmy in forum Addon Sideboxes
    Replies: 0
    Last Post: 23 Nov 2009, 10:30 AM
  4. css flyout menu (for side nav)
    By gsdcypher in forum General Questions
    Replies: 0
    Last Post: 3 Dec 2007, 12:10 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg