Page 19 of 76 FirstFirst ... 917181920212969 ... LastLast
Results 181 to 190 of 754
  1. #181
    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

  2. #182
    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.

  3. #183
    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

  4. #184
    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....

  5. #185
    Join Date
    Nov 2008
    Posts
    22
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    Quote Originally Posted by gee38l View Post
    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....
    Hi,I don't know how to change the colours, , could u pls give me some advices ?

  6. #186
    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 preman View Post
    Hi,I don't know how to change the colours, , could u pls give me some advices ?
    You just change the hex code in the given example (combination of six letters/numbers after the #).
    Google something like "hex color charts", "web safe colors", or the like, and you will find tons of information and visual displays of what each color code displays.

  7. #187
    Join Date
    Nov 2008
    Posts
    22
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    Quote Originally Posted by ckosloff View Post
    You just change the hex code in the given example (combination of six letters/numbers after the #).
    Google something like "hex color charts", "web safe colors", or the like, and you will find tons of information and visual displays of what each color code displays.

    Thank you very much

  8. #188
    Join Date
    Nov 2008
    Posts
    22
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    Quote Originally Posted by ckosloff View Post
    You just change the hex code in the given example (combination of six letters/numbers after the #).
    Google something like "hex color charts", "web safe colors", or the like, and you will find tons of information and visual displays of what each color code displays.
    Hi Ckosloff,


    I faced a Problem to change the color the same like my template,
    pls kindly look my attachment(the left is the one I changed from the CSS FLYOUT, the right one is the original module of my template), I want my CSS FLYOUT has the same color like my template.

    This is the CSS content I changed,I think I may made some mistakes in the colours, could you pls help me to figure them out ?
    Thank you !


    body { behavior: url(includes/csshover.htc);} /* WinIE behavior call */
    div#nav-cat {float: left; width: 140px; margin: -1px 0 0 -1px;
    background-color: #838367; font-weight:bold;}
    div#nav-cat ul {margin: 0; padding: 0; width: 140px; background-color: #838367;
    /* border: 1px solid #AAA;*/}
    div#nav-cat ul.level2 {background-color: #c65928;}
    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 li {position: relative; list-style: none; margin: 0;
    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;
    }
    Attached Thumbnails Attached Thumbnails Click image for larger version. 

Name:	css flyout.jpg 
Views:	244 
Size:	8.1 KB 
ID:	4944   Click image for larger version. 

Name:	my template.jpg 
Views:	225 
Size:	19.1 KB 
ID:	4945  

  9. #189
    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 preman View Post
    Hi Ckosloff,
    I faced a Problem to change the color the same like my template,
    pls kindly look my attachment(the left is the one I changed from the CSS FLYOUT, the right one is the original module of my template), I want my CSS FLYOUT has the same color like my template...
    First thing I noticed is that your CSS is messed up.
    For example, there are two body tags, repeated categories, etc.
    The first thing I would do is clean up the CSS, you will find plenty examples in the thread on how a CSS should look.
    Try pasting one of the "good" CSS onto your test site and check out the looks, it will be easy to take it from there.
    You will just need to play around with the hex codes to find which ones you like, or check with the template maker which hex codes they used.
    By the way, you do have a test site, right?
    If you don't, you need to start there.
    My suggestion would be to buy the Zen Cart manual, and build the test site first.

  10. #190
    Join Date
    Nov 2008
    Posts
    22
    Plugin Contributions
    0

    Default Re: Support for CSS Flyout Menu

    Quote Originally Posted by ckosloff View Post
    First thing I noticed is that your CSS is messed up.
    For example, there are two body tags, repeated categories, etc.
    The first thing I would do is clean up the CSS, you will find plenty examples in the thread on how a CSS should look.
    Try pasting one of the "good" CSS onto your test site and check out the looks, it will be easy to take it from there.
    You will just need to play around with the hex codes to find which ones you like, or check with the template maker which hex codes they used.
    By the way, you do have a test site, right?
    If you don't, you need to start there.
    My suggestion would be to buy the Zen Cart manual, and build the test site first.

    Yep, you are right, I have a test site,with your kind advices,I shall figure out them myself,this is my test site used CHERRY ZEN template www.youtoimport.com
    Thank you very much

 

 
Page 19 of 76 FirstFirst ... 917181920212969 ... 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

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR