Page 1 of 2 12 LastLast
Results 1 to 10 of 2344

Hybrid View

  1. #1
    Join Date
    Jan 2005
    Location
    Mosquito Coast, Texas
    Posts
    92
    Plugin Contributions
    0

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

    Quote Originally Posted by jettrue View Post
    Ah, I see your issue. You have a after the ezpages section</div> that doesn't belong.

    <li><a href="http://www.darkswan.com/store/index.php?main_page=specials">Specials</a></li>

    </div>
    Then that error would be in the ezpages orginal code. That link is specifically from teh EZpage editor as an external link.
    THe same error happens with the classic template. I've put the
    Any suggestions for a fix? Would the error be in the expages MODULE or in the tpl_ezpages_bar_header.php?

  2. #2
    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 darkswan View Post
    Then that error would be in the ezpages orginal code. That link is specifically from teh EZpage editor as an external link.
    THe same error happens with the classic template. I've put the
    Any suggestions for a fix? Would the error be in the expages MODULE or in the tpl_ezpages_bar_header.php?
    Hmm, I'm not sure what you mean about the error being in the ezpages original code? There's no extra div in the files I've uploaded.

    Try looking for a stray div in includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php or includes/templates/YOUR_TEMPLATE/sideboxes/tpl_ezpages_drop_menu.php

  3. #3
    Join Date
    Jan 2005
    Location
    Mosquito Coast, Texas
    Posts
    92
    Plugin Contributions
    0

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

    Quote Originally Posted by jettrue View Post
    Hmm, I'm not sure what you mean about the error being in the ezpages original code? There's no extra div in the files I've uploaded.

    Try looking for a stray div in includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php or includes/templates/YOUR_TEMPLATE/sideboxes/tpl_ezpages_drop_menu.php
    That's just it, I did not alter the code at all, I simply put the files where instructed. The files in:

    includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php and includes/templates/YOUR_TEMPLATE/sideboxes/tpl_ezpages_drop_menu.php

    are exactly the same files in your module zip file.

  4. #4
    Join Date
    Sep 2006
    Location
    Derby UK
    Posts
    99
    Plugin Contributions
    0

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

    Hi.

    Been waiting for an opportune moment to raise my question, but about to "shut down" for the night so will ask it now.

    If you take a look here http://www.appliancesfirst.co.uk you will see my problem. There is a "box" to the right hand side of the menu which not required. How do I get rid of this?

    I thought this question had been answered already in this thread, but have been backwards and forwards all day trying to find it so I appologise if I missed it somewhere.

    regards
    Crazy



  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 Still Crazy View Post
    Hi.

    Been waiting for an opportune moment to raise my question, but about to "shut down" for the night so will ask it now.

    If you take a look here http://www.appliancesfirst.co.uk you will see my problem. There is a "box" to the right hand side of the menu which not required. How do I get rid of this?

    I thought this question had been answered already in this thread, but have been backwards and forwards all day trying to find it so I appologise if I missed it somewhere.

    regards
    Its not a box, its the left-over chunk of the menu. You can change the width of the menu in the stylesheet_header_menu.css. I think about 55em would be close. Then you can open up includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php and change the shopping cart line to this:

    <li><a class="noLine" href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a></li>

    Then you could add this to the same stylesheet:

    div#dropMenu li a.noLine {padding-right:0;border:none;}

  6. #6
    Join Date
    Sep 2006
    Location
    Derby UK
    Posts
    99
    Plugin Contributions
    0

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

    Hi Jade, many thanks for helping me out.

    That's just about cracked it, apart from a small line to the right of the "Shopping Basket" when you hover over it, this looks a little strange when there is something in the basket as the white border shows too, making it look detatched. I'm sure that with a little more playing i can solve this bit. To be honest, most people wouldn't notice it [or care] but when your focus is on a small area of the website everything seems like a problem!

    Thanks again and enjoy the rest of the.....Oh, its Monday already!
    Crazy



  7. #7
    Join Date
    Mar 2007
    Location
    Taiwan
    Posts
    241
    Plugin Contributions
    0

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

    Quote Originally Posted by Still Crazy View Post
    Thanks again and enjoy the rest of the.....Oh, its Monday already!
    Don't worry about the box too much - I think you should concentrate on your "sale" prices...

    Was: £286.00
    Now: £411.25
    Save: -44% off

  8. #8
    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 Still Crazy View Post
    Hi Jade, many thanks for helping me out.

    That's just about cracked it, apart from a small line to the right of the "Shopping Basket" when you hover over it, this looks a little strange when there is something in the basket as the white border shows too, making it look detatched. I'm sure that with a little more playing i can solve this bit. To be honest, most people wouldn't notice it [or care] but when your focus is on a small area of the website everything seems like a problem!

    Thanks again and enjoy the rest of the.....Oh, its Monday already!
    I'm not sure if I'm seeing what you're seeing, but in includes/templates/YOUR_TEMPLATE/css/stylesheet_header_menu.css, try moving:

    background:#4484B2;

    from div#dropMenu ul.level1


    to div#dropMenu li

  9. #9
    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 darkswan View Post
    That's just it, I did not alter the code at all, I simply put the files where instructed. The files in:

    includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php and includes/templates/YOUR_TEMPLATE/sideboxes/tpl_ezpages_drop_menu.php

    are exactly the same files in your module zip file.
    Somewhere along the line it was added somewhere. When I look at the source of your page there's a <div> before Discount Coupons and a </div> after reviews.

    Check also in the "Tools", "EZpages" and make sure that its not there with the internal links?

  10. #10
    Join Date
    Jan 2005
    Location
    Mosquito Coast, Texas
    Posts
    92
    Plugin Contributions
    0

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

    Quote Originally Posted by jettrue View Post
    Somewhere along the line it was added somewhere. When I look at the source of your page there's a <div> before Discount Coupons and a </div> after reviews.

    Check also in the "Tools", "EZpages" and make sure that its not there with the internal links?
    Just an update. I found the error. If you turn the right column/sideboxes off, this is when the error occurs. So I guess the extra div tags are in the column two/right sideboxes files, not the ezpage files. It is, indeed a bug for this menu and/or zencart.

 

 
Page 1 of 2 12 LastLast

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