Results 1 to 10 of 2344

Hybrid View

  1. #1
    Join Date
    Oct 2007
    Location
    singapore
    Posts
    25
    Plugin Contributions
    0

    Default Re: CSS Dropdown menu remove sitemap or pages

    Hi,
    When i tried to switch off the site map in the drop down menu i found an error.
    Please update this in your css flyout header- tpl_drop_menu.php

    initial line-
    <?php if (defined('FILENAME_SITE_MAP')) { ?><li><a href="<?php echo zen_href_link(FILENAME_SITE_MAP); ?>"><?php echo HEADER_TITLE_SITE_MAP; ?></a></li>

    corrected line-
    <?php if (DEFINE_SITE_MAP_STATUS <= 1) { ?><li><a href="<?php echo zen_href_link(FILENAME_SITE_MAP); ?>"><?php echo HEADER_TITLE_SITE_MAP; ?></a></li>

    sitemap status was not defined in the file..

    The css layout was great work..keep it up..and thanks..

  2. #2
    Join Date
    Oct 2007
    Posts
    15
    Plugin Contributions
    0

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

    Hello,
    I have some problems wit this DropDown menu. In IE, it works great, but in Firefox... grr

    FireFox:


    Internet Explorer 7:


    How can I fix this?
    And... this:

    Please, HELP. Thanks!!!

  3. #3
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

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

    Quote Originally Posted by boriZ View Post
    Hello,
    I have some problems wit this DropDown menu. In IE, it works great, but in Firefox... grr

    Please, HELP. Thanks!!!
    If I could see a link, I could help more specifically. But, I can tell you that you need a <div class="clearBoth"></div> at the very end of includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php

    Also, I'm assuming it is breaking into two lines because there is probably some padding or margin on your site that is causing the menu to not have enough room.

    Are you using the most recent version of the drop menu?

  4. #4
    Join Date
    Oct 2007
    Posts
    15
    Plugin Contributions
    0

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

    first pic
    http://img221.imageshack.us/my.php?image=firefoxev8.jpg
    second pic
    http://img98.imageshack.us/img98/1675/ie7fv2.th.jpg
    third pic
    http://img233.imageshack.us/my.php?image=menuyh0.jpg

    Thanks for solving the first problem (with firefox)
    Now.. menu is really breaking into two lines (shoping cart is in new line) but it's not the main issue... the real problem is that when you go to any link (let's say Categories) the table is not entirely grey, so things behind are seen.
    edit:
    And yes, I'm using the latest dropdown menu.
    Last edited by boriZ; 27 Oct 2007 at 04:48 PM. Reason: ....

  5. #5
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

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

    Quote Originally Posted by boriZ View Post

    Thanks for solving the first problem (with firefox)
    Now.. menu is really breaking into two lines (shoping cart is in new line) but it's not the main issue... the real problem is that when you go to any link (let's say Categories) the table is not entirely grey, so things behind are seen.
    edit:
    And yes, I'm using the latest dropdown menu.
    The images don't help me. Can I see your site? You can PM me if you want to keep it private.

  6. #6
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

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

    Quote Originally Posted by boriZ View Post
    first pic
    http://img221.imageshack.us/my.php?image=firefoxev8.jpg
    second pic
    http://img98.imageshack.us/img98/1675/ie7fv2.th.jpg
    third pic
    http://img233.imageshack.us/my.php?image=menuyh0.jpg

    Thanks for solving the first problem (with firefox)
    Now.. menu is really breaking into two lines (shoping cart is in new line) but it's not the main issue... the real problem is that when you go to any link (let's say Categories) the table is not entirely grey, so things behind are seen.
    edit:
    And yes, I'm using the latest dropdown menu.
    The issue is this:

    Code:
    li { background:url(../images/list_back.gif) repeat-x bottom; padding-left:12px; line-height:22px; color:#BDBDBD; }
    inside style.css, which says that EVERY list item, anywhere on the site, needs to have the little white dot, and 12px of left padding. The 12px of left padding is what is making the menu wrap.

    So, I would change the above to:
    Code:
    .columnLeft li { background:url(../images/list_back.gif) repeat-x bottom; padding-left:12px; line-height:22px; color:#BDBDBD; }
    so that this only occurs for things in the sideboxes, and not the whole site.

  7. #7
    Join Date
    Oct 2007
    Posts
    15
    Plugin Contributions
    0

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

    thanks for your fast help!
    Just 1 question left... Can I remove that little triangles in the menu and how?
    Last edited by boriZ; 28 Oct 2007 at 05:29 PM.

  8. #8
    Join Date
    Feb 2007
    Location
    Pennsylvania
    Posts
    814
    Plugin Contributions
    0

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

    Quote Originally Posted by boriZ View Post
    thanks for your fast help!
    Just 1 question left... Can I remove that little triangles in the menu and how?
    boriZ
    if you are working on css drop menu here is your answer. . .
    in stylesheet_header_menu.css should be line 52 you'll find

    div#dropMenu li.submenu {background: url(../images/dropmenu.gif) 95% 50% no-repeat;}

    you need to place a /* before the line. it should look like this,

    /*div#dropMenu li.submenu {background: url(../images/dropmenu.gif) 95% 50% no-repeat;}

    Hope this helps.
    John

  9. #9
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: CSS Dropdown menu remove sitemap or pages

    Quote Originally Posted by sooraj View Post
    Hi,
    When i tried to switch off the site map in the drop down menu i found an error.
    Please update this in your css flyout header- tpl_drop_menu.php

    initial line-
    <?php if (defined('FILENAME_SITE_MAP')) { ?><li><a href="<?php echo zen_href_link(FILENAME_SITE_MAP); ?>"><?php echo HEADER_TITLE_SITE_MAP; ?></a></li>

    corrected line-
    <?php if (DEFINE_SITE_MAP_STATUS <= 1) { ?><li><a href="<?php echo zen_href_link(FILENAME_SITE_MAP); ?>"><?php echo HEADER_TITLE_SITE_MAP; ?></a></li>

    sitemap status was not defined in the file..

    The css layout was great work..keep it up..and thanks..
    Yes, this among other things will be addressed in my next update... I actually already have it fixed on my test site, I just need to get it updated... thanks for the reminder!

 

 

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

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