Page 53 of 235 FirstFirst ... 343515253545563103153 ... LastLast
Results 521 to 530 of 2345
  1. #521
    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 billybonds View Post
    Hi jettrue

    Thanks for getting back to me. I'm re-installing the site and have reached the dropdown menu stage, again with the same problem in ie6.

    So the url is http://www.africanart&masks.com

    One thing I'm not sure of is where you mention the .htaccess file. I have includes/.htaccess but do NOT have root/.htaccess.

    I'm not sure that this would be the problem anyway since my understanding is that the modifications are to do with using and not using www. in the url.

    (It also wraps now in ie6 using version 1.3, which it did not in version 1.2)

    Thanks for your help,

    Jim.
    This file:

    http://www.africanartandmasks.com/includes/csshover.htc

    is not online on your site. Make sure it is uploaded. Also, it should be root/.htaccess.

  2. #522
    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 HomsteadMom View Post
    I'm using your drop menu and love it. But I need a little help...
    I've installed a wordpress blog and the integration mod for it. That was a pain but finaly got it. But I'd really like to have the blog accessible from the drop menu not the side boxes. However I have no idea how to set that up....If someone could point me in the right direction I'd appreciate it!!

    Thanks,
    Open up includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php, and put the link inside one of the sections, probably best in the "information" drop down, just add your link after one of the drop down links, like this:

    <li><a href="link_here.htm">Name of Link Here</a></li>

  3. #523
    Join Date
    Nov 2003
    Location
    UK
    Posts
    105
    Plugin Contributions
    0

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

    Hi jettrue Once again thanks for taking the time to help others out. I don't know why csshover.htc was not there... anyway I've put it there and still no joy with ie6. As for the .htaccess - where should that file come from? If I use the one from includes then I get a 'Error 403 - forbidden' and cannot access the site. btw... just to be sure that I am clear - the root/.htaccess - is 'root' the folder that I uploaded the Zen Cart files to originally? Jim.

  4. #524
    Join Date
    Mar 2007
    Posts
    43
    Plugin Contributions
    0

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

    Thanks it worked well . But what I'm really trying to do is have it in a separate menu not inside one of the others. Such after the shopping cart tab. I've been playing with it but can't get it right yet....

  5. #525
    Join Date
    Mar 2007
    Posts
    43
    Plugin Contributions
    0

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

    I found this site in the wordpress thread.

    http://www.mummycare.com.my/shop/

    Some how they have got the blog link in the drop menu the same way I want it. I've tried to do this but can't get it in the right place. I know it can't be THAT hard lol but I keep getting it inside or under the other sections...

  6. #526
    Join Date
    Apr 2006
    Posts
    108
    Plugin Contributions
    0

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

    Firefox error using this dropdown menu

    It works fine for me in other browsers, but in firefox i get this:


    http://www.zen-cart.com/forum/showth...479#post444479

    Any ideas?

    Many Thanks

    Samantha Andrews

  7. #527
    Join Date
    Sep 2007
    Posts
    23
    Plugin Contributions
    0

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

    I have the same problem in firefox: the head is separated from the body. I'm not sure it's because of applying the CSS dropdown menu or not (I installed yesterday), since I did not use firefox for a while during site modification. Any help will be appreciated.

    Here is my site: http://www.bioland-sci.com

  8. #528
    Join Date
    Apr 2006
    Posts
    108
    Plugin Contributions
    0

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

    Driving me nuts!
    Nothing I try will get Firefox to work it!

    argh!!

  9. #529
    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 billybonds View Post
    Hi jettrue Once again thanks for taking the time to help others out. I don't know why csshover.htc was not there... anyway I've put it there and still no joy with ie6. As for the .htaccess - where should that file come from? If I use the one from includes then I get a 'Error 403 - forbidden' and cannot access the site. btw... just to be sure that I am clear - the root/.htaccess - is 'root' the folder that I uploaded the Zen Cart files to originally? Jim.
    In the download for this template, there is the "additions_to_.htaccess" file. You simply add that to the folder that contains all of the zen cart files... so the .htaccess would be right before the admin folder. The .htaccess doesn't come from anywhere, if it doesn't exist in the root of your cart, simply create it in notepad, save it as .htaccess, and upload it.

    Does the dropdown work at your site without the www? If so, the .htaccess changes will fix that issue. Do you want your site to have the www when people visit it, or not?

  10. #530
    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 HomsteadMom View Post
    Thanks it worked well . But what I'm really trying to do is have it in a separate menu not inside one of the others. Such after the shopping cart tab. I've been playing with it but can't get it right yet....
    Just a single item, right, not a drop down list? Add the same thing,

    Code:
    <li><a href="link_here.htm">Name of Link Here</a></li>
    Just add it after this:
    Code:
                <?php if ($_SESSION['cart']->count_contents() != 0) { ?>
                <li class="submenu"><a class="noLine" href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a>
                  <ul class="level2">
                    <li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
                  </ul>
                </li>
                <?php } else { ?>
                <li><a class="noLine" href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a></li>
                <?php } ?>

 

 

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