Page 168 of 235 FirstFirst ... 68118158166167168169170178218 ... LastLast
Results 1,671 to 1,680 of 2345
  1. #1671
    Join Date
    Oct 2009
    Posts
    15
    Plugin Contributions
    0

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

    Jade True,

    This is a great mod! I'd like to make changes, but I'm a beginner with Zen Cart, php, and css. Would there be a diagram of the architecture -- this file here calls that file there -- so I can get an overview of how the mod works? Thanks!

  2. #1672
    Join Date
    Aug 2009
    Location
    Carmi, IL
    Posts
    354
    Plugin Contributions
    0

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

    Quote Originally Posted by perkiekat View Post
    I know there must be someone who has had the same issue, please help me out. I'd really appreciate it!

    Thanks!
    Sorry...but I need to bump this question...I really need to know what I've done or not done to make the sub-catagories to show.
    Thanks!
    Last edited by perkiekat; 16 Oct 2009 at 01:26 AM. Reason: changed a word

  3. #1673
    Join Date
    Sep 2009
    Posts
    4
    Plugin Contributions
    0

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

    Is there a way to use the CSS horizontal drop down menu in a regular website as well? I want to be able to change it easily like in Zen Cart but I want to create part of the website outside of Zen Cart.

    Any suggestions?

  4. #1674
    Join Date
    Jun 2009
    Location
    Otorohanga, New Zealand
    Posts
    25
    Plugin Contributions
    0

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

    Quote Originally Posted by perkiekat View Post
    Question for you:

    How did you get the sub-catagories to show up??
    run the blank page script, i think if you turn on the side cat and then try to load the page I think you will find it will show blank

    Richard

  5. #1675
    Join Date
    Nov 2008
    Location
    Slovenija
    Posts
    119
    Plugin Contributions
    0

    Default

    I have installed the css flyout menu 1.5 and the multilanguage ez-pages.

    The title names don't display correctly after installed multiple language ezpages module.

    The problem was resolved thank's to the following code

    I would like to thank's Marksu for that code.



    Quote Originally Posted by marksu View Post
    Well never mind.

    I made the changes my self it was mutch simpler than I thought.

    Not sure if anyone care as not mutch communication hre but if somebody need solution here it is.

    It is based on my earlier design which enables to add ezpaged filtering which groups they belong.

    It would be even better code if it could outomatically check if multi languge expages module is installed instead of using comments character. Wen I dont know how to do it so this will do.

    // --------------------


    If ($chapNumber != ""){

    // USE THIS IS MULTI-LANGUGE EZPAGES MODULE NOT INSTALLED
    // $page_query = $db->Execute("select * from " . TABLE_EZPAGES . " where toc_chapter = " . $chapNumber . " and status_header = 1 order by header_sort_order, pages_title");

    // USE THIS IS MULTI-LANGUGE EZPAGES MODULE IS INSTALLED
    // query modified for multi-language support
    $page_query = $db->Execute("select e.pages_id, e.page_open_new_window, e.page_is_ssl, e.alt_url, e.alt_url_external, et.pages_title
    from " . TABLE_EZPAGES . " e, " . TABLE_EZPAGES_TEXT . " et
    where toc_chapter = " . $chapNumber . " and e.pages_id = et.pages_id
    and et.languages_id = '" . (int)$_SESSION['languages_id'] . "'
    and status_header = 1
    and header_sort_order > 0
    order by header_sort_order, pages_title");
    // end of modification


    } else

    {
    // USE THIS IS MULTI-LANGUGE EZPAGES MODULE NOT INSTALLED
    $page_query = $db->Execute("select * from " . TABLE_EZPAGES . " where status_header = 1 order by header_sort_order, pages_title");

    // USE THIS IS MULTI-LANGUGE EZPAGES MODULE IS INSTALLED
    // query modified for multi-language support
    $page_query = $db->Execute("select e.pages_id, e.page_open_new_window, e.page_is_ssl, e.alt_url, e.alt_url_external, et.pages_title
    from " . TABLE_EZPAGES . " e, " . TABLE_EZPAGES_TEXT . " et
    where e.pages_id = et.pages_id
    and et.languages_id = '" . (int)$_SESSION['languages_id'] . "'
    and status_header = 1
    and header_sort_order > 0
    order by header_sort_order, pages_title");
    // end of modification
    }
    // --------------------

    marksu

    But I still have one problem.


    The ez-pages display correctly in the css menu, but near the menu I had also the <div class="box"> that display the ez-pages.

    What shoul I do?


    Thank's for your help!
    I love internet and the power of information... Best Wishes!!

  6. #1676
    Join Date
    Apr 2009
    Posts
    149
    Plugin Contributions
    0

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

    I imagine this has been asked somewhere among all the pages but 168 pages are alot to read through.

    But all I want is my top level catagories as the links along the top menu, and then when I hover over them they open to my subcats.

    Is this possible?

  7. #1677
    Join Date
    Aug 2009
    Location
    Carmi, IL
    Posts
    354
    Plugin Contributions
    0

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

    Quote Originally Posted by scottwww1 View Post
    run the blank page script, i think if you turn on the side cat and then try to load the page I think you will find it will show blank

    Richard
    Thanks for the reply...however, I do not know what you are talking about when you said ..."run the blank page script"...what is this?? I have the side catagories turned on.

    Thanks

  8. #1678
    Join Date
    Apr 2009
    Posts
    149
    Plugin Contributions
    0

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

    Quote Originally Posted by perkiekat View Post
    Thanks for the reply...however, I do not know what you are talking about when you said ..."run the blank page script"...what is this?? I have the side catagories turned on.

    Thanks
    Probably this

    Debug Error Logging Utility

    It's extremely useful. Just be sure to read the instructions.
    Last edited by timdwyer42; 22 Oct 2009 at 12:26 PM.

  9. #1679
    Join Date
    Aug 2009
    Location
    Carmi, IL
    Posts
    354
    Plugin Contributions
    0

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

    Quote Originally Posted by timdwyer42 View Post
    Probably this

    Debug Error Logging Utility

    It's extremely useful. Just be sure to read the instructions.
    Thanks for clearing that up. I'm not getting any blank pages though. The sub-catagories won't show when I mouse over the drop down main catagories.

  10. #1680
    Join Date
    Jun 2006
    Location
    My family and I live in Brighton, England
    Posts
    982
    Plugin Contributions
    0

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

    Hello! I've just added this menu to my Zen version 1.3.6 and overall everything seems to be fine. There is one minor issue that I'd like to resolve: If you visit this page and mouse-over Categories or Information in the menu, you'll see that the menu goes behind the CSS image Gallery. Any suggestions on how to correct that?

    And while I'm at it, could someone also tell me how to remove the grey line at the upper-most part of the page?

    Thanks!!

 

 

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