Page 203 of 235 FirstFirst ... 103153193201202203204205213 ... LastLast
Results 2,021 to 2,030 of 2345
  1. #2021
    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 gsallen101289 View Post
    I hesitated posting but I have been unable to find the answer.

    1) How Can I add my own parent menu listing and then add child, sub-categories? Is this done with the categories_ul_generator? If so is there anywhere in this thread that describes how?

    2) In my menu the text must read CONTACT_US. When editing to Contact Us (No underscore) in tpl_drop_menu.php something breaks and I lose the site.

    I do appreciate any help!

    Exactly what are you trying to achieve? Contact Us is ALREADY in this menu. If you don't see it, you've got the wrong menu.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  2. #2022
    Join Date
    Aug 2009
    Posts
    44
    Plugin Contributions
    0

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

    Using CONTACT_US as an example. Goal is to remove the underscore. Any menu tab that contains more than one word is requiring an underscore between each word.

  3. #2023
    Join Date
    Aug 2009
    Posts
    44
    Plugin Contributions
    0

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

    Here is a current screenshot
    Attached Images Attached Images  

  4. #2024
    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!

    Yes, if you're linking to Zen-Cart files such as Contact Us, then in includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php you will see how it was added:

    Code:
    <li><a href="<?php echo zen_href_link(FILENAME_CONTACT_US, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CONTACT_US; ?></a></li>
    Then to keep it from showing in the Menu as CONTACT_US, you will see that the entry is defined in includes/languages/english/extra_definitions/YOUR_TEMPLATE/headermenu.php as

    Code:
    define('HEADER_TITLE_CONTACT_US','Contact Us');

    But............like I say, that's for using pre-existing Zen-Cart files, such as the Contact Us Page. For adding Top-Level links of your own that does NOT use pages, just add your link in the tpl_drop_menu.php Something like:

    Code:
    <li class="submenu"><a href="your_top-level_link.php">My Link</a></li>
    <ul class="level2">
    <li><a href="your_second-level_link.php">My Link 2</a></li>
    <li><a href="your_third-level_link.php">My Link 3</a></li>
    </ul>

    hope this helps.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  5. #2025
    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 gsallen101289 View Post
    Here is a current screenshot

    Just a thumbnail. We can't see anything in it.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  6. #2026
    Join Date
    Aug 2009
    Posts
    44
    Plugin Contributions
    0

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

    Thank you for the information. I think I may have solved the problem..

  7. #2027
    Join Date
    May 2010
    Location
    Cyberspace
    Posts
    376
    Plugin Contributions
    0

    help question Re: CSS Dropdown menu for the header - background

    Hi! This mod is Great! I'm trying to 'light up' the different dropMenu's (div#dropMenu li a:hover) when hovered, so that their color changes from dark blue to light blue.. I've tried emulating this effect with opacity settings but I cant get it right. Any help would be terriffic, I'm pretty much stuck here...

    www.develop.centuriongames.se

    Thanks!
    Jacob

  8. #2028
    Join Date
    Dec 2007
    Location
    Michigan
    Posts
    160
    Plugin Contributions
    0

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

    I am using ZC 1.3.7 and just installed all of the CSS Flyout Header files but nothing is showing up. I have been through the file structure several times to make sure that I have in fact put everything where it is supposed to go and everything seems to be in place. Only the Catagory tabs I already had in place are visible, but no drop down menu. Is there something I have to turn on or turn off in the admin to get it to show up?

    My site: http://www.monumentsplus.com

    Thank you.

  9. #2029
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

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

    Quote Originally Posted by GraniteMan44 View Post
    I am using ZC 1.3.7 and just installed all of the CSS Flyout Header files but nothing is showing up. I have been through the file structure several times to make sure that I have in fact put everything where it is supposed to go and everything seems to be in place. Only the Catagory tabs I already had in place are visible, but no drop down menu. Is there something I have to turn on or turn off in the admin to get it to show up?

    My site: http://www.monumentsplus.com

    Thank you.
    I think you are posting in the wrong support thread.. the "CSS Flyout Header" is a completely different menu module..
    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.

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

    Default Re: CSS Dropdown menu for the header - background

    Quote Originally Posted by Soniccc View Post
    Hi! This mod is Great! I'm trying to 'light up' the different dropMenu's (div#dropMenu li a:hover) when hovered, so that their color changes from dark blue to light blue.. I've tried emulating this effect with opacity settings but I cant get it right. Any help would be terriffic, I'm pretty much stuck here...

    www.develop.centuriongames.se

    Thanks!
    Jacob
    From dark blue to light blue. After looking at your site, I assume you're talking about the background color and NOT the font color, correct?

    If so, then add this to your stylesheet:

    This will change the Main Menu ONLY upon hover:
    Code:
    #dropMenu ul.level1>li:hover {
       background: #87ceeb;
    }
    Now this will change colors on ALL LEVELS upon hover:
    Code:
    #dropMenu ul.level1 li:hover {
       background: #87ceeb;
    }
    Hope this helps.

    P.S. opacity wouldn't change the color, anyway. It would just make it transparent to a certain degree depending on what your setting was.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

 

 

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