Page 78 of 235 FirstFirst ... 2868767778798088128178 ... LastLast
Results 771 to 780 of 2345
  1. #771
    Join Date
    Nov 2007
    Posts
    260
    Plugin Contributions
    0

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

    Now the title names dont display correctly after installed multiple language ezpages module.

    I added message to multiple languge ezpages thread in hope for solution.

    I hope you could also go over to that thread and help out.
    It is better to keep discussion to one thread only so reply on that thread.

    The other thread
    http://www.zen-cart.com/forum/showth...562#post490562




    I mage above shows the main title (array string) problem.

    marksu

  2. #772
    Join Date
    Sep 2007
    Location
    Neenah, WI
    Posts
    112
    Plugin Contributions
    0

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

    Hello,

    Is it possible to remove the "Zen Cart: The Art of E-Commerce" image that is displayed in the top left corner of my site? It appeared after I installed v1.4 of the CSS Horizontal Dropdown Menu into Zen-Cart v1.3.7. I looked inside the Sideboxes Controller and Layout Boxes Controller within admin and didn't see anything that would turn that image off.

    Here's a link to my site: http://www.basphoto.com

    Thanks for any help anyone can provide.

    Brad
    Last edited by bsteinagel; 16 Jan 2008 at 06:37 PM. Reason: add url

  3. #773
    Join Date
    Sep 2007
    Location
    Neenah, WI
    Posts
    112
    Plugin Contributions
    0

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

    Hello,

    In addition to the post above, I also wanted to know if there was a way to modify the top-level links within the menu. I changed the "Categories" box of the menu to read "Gallery". Currently, if a customer were to click on "Gallery" they would be taken to the site map. How do I modify this so that they can be taken to a page that has links to all my image galleries?

    Please click on the word Gallery within the menu of my website to see what I mean. Here's the link: http://www.basphoto.com

  4. #774

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

    Quote Originally Posted by bsteinagel
    Is it possible to remove the "Zen Cart: The Art of E-Commerce" image
    I believe that one is turned off via the banner manager in the admin.

    Admin-> Tools -> Banner Manager --- set the color of the green status boxes to red.

    Your question about changing the link of the drop Menu answered here:

    Open up this file -> includes/templates/Your_template/common/tpl_drop_menu.php

    find the site_map part and change the link to:

    Code:
    <a href="<?php echo zen_href_link(FILENAME_SITE_MAP); ?>">
    
    
    <a href="YourDesiredLink.com/desiredLink">

  5. #775
    Join Date
    Sep 2007
    Location
    Neenah, WI
    Posts
    112
    Plugin Contributions
    0

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

    Thank you very much rainthebat. Your solution for the top-level link worked perfectly! However, I still cannot get the zen cart logo to disappear from the top left corner. I did check the layout boxes controller and the banner manager as you suggested and all the appropriate status boxes were red.

    Brad

  6. #776

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

    Hi Brad,

    I was just guessing banner without actually looking into it. There are two ways to get rid of that, one is to open up the style sheet and set the value logo to not display:

    #logo{display:none}

    This option would allow you to display a logo easily in the future if you so required, by simply removing this statement.

    The second way is to remove everything that the <div "logo"> tag contains, and the tag itself from includes/templates/Your_Template/common/tpl_header.php

    I would recommend the first way to have least impact if you are not familiar with editing the php files.

  7. #777
    Join Date
    Sep 2007
    Location
    Neenah, WI
    Posts
    112
    Plugin Contributions
    0

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

    Worked perfectly. Thanks rainthebat!

  8. #778
    Join Date
    Nov 2007
    Posts
    260
    Plugin Contributions
    0

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

    Well allmost all problems solved.
    Seems like this module is not compatible with Multi-Language Support for EZ-Pages module.

    The problem is that ezpages_drop_menu.php uses the original ezpages_drop_menu.php database table to get ezpage data.

    Instead it should use the zen_ezpages_content table that is used on
    Multi-Language Support for EZ-Pages module.


    Any change anyone have solved the issue?

    marksu

  9. #779
    Join Date
    Nov 2007
    Posts
    260
    Plugin Contributions
    0

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

    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
    Last edited by marksu; 18 Jan 2008 at 09:12 PM.

  10. #780
    Join Date
    Jan 2008
    Posts
    13
    Plugin Contributions
    0

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

    Thanks a lot..i think dropdown menu is solution for much category but still on good design


    http://www.percikaniman.org
    http://www.rumahstudio.com
    http://www.visionesystem.com

 

 

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