Page 213 of 235 FirstFirst ... 113163203211212213214215223 ... LastLast
Results 2,121 to 2,130 of 2345
  1. #2121
    Join Date
    Dec 2006
    Location
    Seligman, MO U.S.A.
    Posts
    2,101
    Plugin Contributions
    5

    Default Re: CSS Dropdown menu for the header- With Categories!

    Quote Originally Posted by clydejones View Post
    @Get Em Fast

    I'm using your updated menu on a client site. (using the alternate version)

    The client only has 5 top categories but only needs to have 4 shown in the menu.

    How can I change tpl_drop_menu.php to only show those 4 top categories?

    Thanks
    Hmmmmm...........not sure, Clyde. As the menu uses the url_generator.php to generate the categories, then all the top Cats will be displayed. I guess...........a person could include an 'if' statement to hide one category, but I'm not sure exactly how it would be coded.
    Oh.............forget about the "Hide Categories" mod, too. It doesn't work with this menu. Just though I'd let you know that, to maybe save a headache.

    I'll do some checking, though, and see what I can get done.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  2. #2122
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: CSS Dropdown menu for the header- With Categories!

    Quote Originally Posted by Get Em Fast View Post
    Hmmmmm...........not sure, Clyde. As the menu uses the url_generator.php to generate the categories, then all the top Cats will be displayed. I guess...........a person could include an 'if' statement to hide one category, but I'm not sure exactly how it would be coded.
    Oh.............forget about the "Hide Categories" mod, too. It doesn't work with this menu. Just though I'd let you know that, to maybe save a headache.

    I'll do some checking, though, and see what I can get done.
    Thanks, I'll also do some checking.

  3. #2123
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: CSS Dropdown menu for the header- With Categories!

    Quote Originally Posted by Get Em Fast View Post
    Hmmmmm...........not sure, Clyde. As the menu uses the url_generator.php to generate the categories, then all the top Cats will be displayed. I guess...........a person could include an 'if' statement to hide one category, but I'm not sure exactly how it would be coded.
    Oh.............forget about the "Hide Categories" mod, too. It doesn't work with this menu. Just though I'd let you know that, to maybe save a headache.

    I'll do some checking, though, and see what I can get done.
    Quote Originally Posted by clydejones View Post
    Thanks, I'll also do some checking.
    Worked it out.

    I just added an additional element to the where clause of the select statement. The highlight would be the category id you want to hide in the menu.
    and c.categories_id != 80

  4. #2124
    Join Date
    Dec 2006
    Location
    Seligman, MO U.S.A.
    Posts
    2,101
    Plugin Contributions
    5

    Default Re: CSS Dropdown menu for the header- With Categories!

    Glad to hear you got it.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  5. #2125
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,023
    Plugin Contributions
    32

    Default Re: CSS Dropdown menu for the header- With Categories!

    Quote Originally Posted by Get Em Fast View Post
    Hmmmmm...........not sure, Clyde. As the menu uses the url_generator.php to generate the categories, then all the top Cats will be displayed. I guess...........a person could include an 'if' statement to hide one category, but I'm not sure exactly how it would be coded.
    Oh.............forget about the "Hide Categories" mod, too. It doesn't work with this menu. Just though I'd let you know that, to maybe save a headache.

    I'll do some checking, though, and see what I can get done.
    Quote Originally Posted by clydejones View Post
    Worked it out.

    I just added an additional element to the where clause of the select statement. The highlight would be the category id you want to hide in the menu.
    and c.categories_id != 80
    And FYI.. something similar to this would allow the hideCategories module to work with this menu as well..

    and before anyone asks.. No... off the top of my head, I do not know the SPECIFIC code required to use this menu with hideCategories. However, I do know that adding the right condition to the where clause would/should be the solution to allow hideCategories to work with this menu (I used this very thing for the older version of this mod)..
    Last edited by DivaVocals; 20 Mar 2011 at 06:51 PM.
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  6. #2126
    Join Date
    Dec 2004
    Posts
    16
    Plugin Contributions
    0

    Default Re: CSS Dropdown menu for the header- With Categories!

    Hi,

    I've searched the forum and can't seem to find an answer to my problem. I have a slideshow on my home page. It works fine, but the dropdown categories are being obscured by the slideshow images. I have the following in my "define_main_page.php" file. Any help would be GREATLY appreciated!

    <CENTER>
    <BR>
    <script type="text/javascript" src="http://www.mysite.com/includes/templates/avonlee_contempo/jscript/fadeslideshow.js">
    /***********************************************
    * Ultimate Fade In Slideshow v2.0- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
    * This notice MUST stay intact for legal use
    * Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
    ***********************************************/

    </script>

    <script type="text/javascript">

    var mygallery=new fadeSlideShow({
    wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
    dimensions: [660, 180], //width/height of gallery in pixels. Should reflect dimensions of largest image
    imagearray: [
    ["http://www.mysite.com/images/slide3.jpg", "", "", "Nothing beats relaxing next to the pool when the weather is hot."],
    ["http://www.mysite.com/images/slide4.jpg", "http://en.wikipedia.org/wiki/Cave", "_new", "Some day I'd like to explore these caves!"],
    ["http://www.mysite.com/images/slide1.jpg"],
    ["http://www.mysite.com/images/slide2.jpg", "", "", "What a beautiful scene with everything changing colors."] //<--no trailing comma after very last image element!
    ],
    displaymode: {type:'auto', pause:2500, cycles:0, wraparound:false},
    persist: false, //remember last viewed slide and recall within same session?
    fadeduration: 500, //transition duration (milliseconds)
    descreveal: "ondemand",
    togglerid: ""
    })
    </script>
    <div id="fadeshow1"></div>
    <BR>
    </CENTER>

  7. #2127
    Join Date
    Dec 2006
    Location
    Seligman, MO U.S.A.
    Posts
    2,101
    Plugin Contributions
    5

    Default Re: CSS Dropdown menu for the header- With Categories!

    gmc,

    What, the menu drops down behind the slider images, right? If you'll look in your includes/templates/your_template/css/stylesheet_header_menu.css for any entries of "z-index: 1000" and change the number to a higher value than 1000, that should do the trick.
    But, of course, if you had a url, and we could SEE the site, we could help you with a more EXACT solution..........:)
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  8. #2128
    Join Date
    Jul 2009
    Location
    india
    Posts
    27
    Plugin Contributions
    0

    Default Re: CSS Dropdown menu for the header- With Categories!

    thankq jettrue for your contribution and support.

    hi! am new here i just install the module CSS Dropdown menu for the header (CSS Flyout Header 1.5)..zen v1.3.8a, even am using Magic SEO URLs module.

    i followed as per instruction install, tested on local server its fine but when i install on live its shows only shopping cart and contact us link in top menu (no catagries no drop down menu)..

    please educate me where am wrong.

    thanks
    rashu

  9. #2129
    Join Date
    Jul 2009
    Location
    india
    Posts
    27
    Plugin Contributions
    0

    Default Re: CSS Dropdown menu for the header- With Categories!

    hey! it works now...sorry for pre post.
    actually i forgot add .htaccess code on root dir.

    thank

  10. #2130
    Join Date
    May 2010
    Location
    Cyberspace
    Posts
    376
    Plugin Contributions
    0

    Default Re: CSS Dropdown menu for the header- With Categories!

    I'm getting lots of validation errors with this add-on.. especially concerning non-closed arguments involving li and ul tags and so forth.. anyone having the same problem?

 

 

Similar Threads

  1. Categories dropdown menu/css
    By KenshiroU in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 5 Apr 2013, 01:04 PM
  2. HIde categories mod with css dropdown menu
    By adowty in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 9 Feb 2012, 01:05 AM
  3. How to use ezpages/categories as dropdown menu in the header?
    By mdivk in forum Templates, Stylesheets, Page Layout
    Replies: 12
    Last Post: 21 Dec 2011, 06:32 PM
  4. whats wrong with this css for my dropdown menu?
    By 1kell in forum Templates, Stylesheets, Page Layout
    Replies: 9
    Last Post: 28 May 2010, 02:47 AM
  5. Header Dropdown Menu (CSS) Without the Dropdown???
    By hcd888 in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 27 May 2009, 01:20 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