Results 1 to 10 of 2344

Hybrid View

  1. #1
    Join Date
    Jun 2008
    Posts
    6
    Plugin Contributions
    0

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

    Help! I just moved my site to another host and I am having a problem when I reinstalled the mod. It no longer displays the Home, Categories, Information... It only displays the sub-categories. Here is my site. http://www.garlandskinandbody.com/index.php?main_page=

    Why would this be happening? Any help would be GREAT!!!

    Thanks!

  2. #2
    Join Date
    Jun 2008
    Posts
    6
    Plugin Contributions
    0

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

    Quote Originally Posted by garland68 View Post
    Help! I just moved my site to another host and I am having a problem when I reinstalled the mod. It no longer displays the Home, Categories, Information... It only displays the sub-categories. Here is my site. http://www.garlandskinandbody.com/index.php?main_page=

    Why would this be happening? Any help would be GREAT!!!

    Thanks!
    Oh Never mind:-) I realized I grabbed Paul's version which is meant to only show sub cat's :-)

    Thanks!!!

  3. #3
    Join Date
    Sep 2008
    Location
    Los Angeles, CA
    Posts
    67
    Plugin Contributions
    0

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

    I need a little help positioning the dropdown menu. I want to have the whole menu right aligned (not the individual text in each menu item). Can someone help me with this?

  4. #4
    Join Date
    Nov 2004
    Location
    West Mids, England
    Posts
    203
    Plugin Contributions
    1

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

    Quote Originally Posted by nosleephotel View Post
    I need a little help positioning the dropdown menu. I want to have the whole menu right aligned (not the individual text in each menu item). Can someone help me with this?
    Try a:

    float:right;

    in the #dropMenuWrapper

    You might have to play around with other settings after this.

    Craig

  5. #5
    Join Date
    Jun 2008
    Posts
    18
    Plugin Contributions
    0

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

    Hi, I am working on my zen cart site and I have searched the forums and no answer. I installed the css_horizontal_drop_down_menu_1-5
    and I changed the CSS and content to what I wanted for my site, but it is not displaying properly in Internet Explorer 7. It works fine in Firefox and Safari. I am sure it is a CSS issue and I have tried to fix it to no avail. I did try to make the text smaller thinking it may why IE is pushing the content to two lines, nothing changed. I tried removing some of the links to see if there were too many and that was causing the issue, but it only looked worse in IE and worse in Firefox, which was strange. I keep reading in the forums that this add-on looks beautiful in IE. Does anyone have any advice?


    The development site is live at http://www.divaliciouschocolate.com/dev/store/
    It is about 75% complete and needing more CSS tweaking and images added so please remember it is a work in progress....

    Mine is a new installation Zen Cart 1.3.8a
    My website is currently only locally on my computer
    Server OS: Windows NT DELL-024B1D4ABD 5.1 build 2600
    Database: MySQL 5.0.51a
    Database Host: localhost (127.0.0.1)
    PHP Version: 5.2.5 (Zend: 2.2.0)
    HTTP Server: Apache/2.2.8 (Win32) DAV/2 mod_ssl/2.2.8 OpenSSL/0.9.8g mod_autoindex_color PHP/5.2.5

    Thanks for your help and I look forward to hearing back from you

    -- Jackie

  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 Divalicious Chocolat View Post
    Hi, I am working on my zen cart site and I have searched the forums and no answer. I installed the css_horizontal_drop_down_menu_1-5
    and I changed the CSS and content to what I wanted for my site, but it is not displaying properly in Internet Explorer 7. It works fine in Firefox and Safari. I am sure it is a CSS issue and I have tried to fix it to no avail. I did try to make the text smaller thinking it may why IE is pushing the content to two lines, nothing changed. I tried removing some of the links to see if there were too many and that was causing the issue, but it only looked worse in IE and worse in Firefox, which was strange. I keep reading in the forums that this add-on looks beautiful in IE. Does anyone have any advice?


    The development site is live at http://www.divaliciouschocolate.com/dev/store/
    It is about 75% complete and needing more CSS tweaking and images added so please remember it is a work in progress....

    Mine is a new installation Zen Cart 1.3.8a
    My website is currently only locally on my computer
    Server OS: Windows NT DELL-024B1D4ABD 5.1 build 2600
    Database: MySQL 5.0.51a
    Database Host: localhost (127.0.0.1)
    PHP Version: 5.2.5 (Zend: 2.2.0)
    HTTP Server: Apache/2.2.8 (Win32) DAV/2 mod_ssl/2.2.8 OpenSSL/0.9.8g mod_autoindex_color PHP/5.2.5

    Thanks for your help and I look forward to hearing back from you

    -- Jackie
    Hi There,

    first of all, you have a ton of drop menu items... it may be difficult to fit them all.

    Now notice, that this section in stylesheet_header_menu.css starts out looking like this:

    Code:
    div#dropMenu li {
    	position:relative;
    	list-style:none; 
    	margin:0; 
    	float:left; 
    	line-height:1em;
    	width:16.667%;
    	*width:16.649%;
    	}
    This is designed for 6 drop down menu items across. Now that you've decided to make it 8 items across, you need to change that 16.667 and 16.649 to reflect your change. 100 / 6 = 16.667, 100 / 8 = 12.5. So your section above should look something like this (the *width:16.649 is for IE only, it needs to be a bit smaller to fit):

    Code:
    div#dropMenu li {
    	position:relative;
    	list-style:none; 
    	margin:0; 
    	float:left; 
    	line-height:1em;
    	width:12.5%;
    	*width:12.25%;
    	}
    You can try adjusting the 12.25 to a slightly smaller number if it doesn't work.

    You currently have this:
    Code:
    div#dropMenu li {
    	position:relative;
    	list-style:none; 
    	margin:0; 
    	float:left; 
    	line-height:1em;
    	width:auto;
    	margin-right:2em;
    	padding-left: .1em;
    	*width:16.649%;
    	}
    Simply replace this with the chunk above.

  7. #7
    Join Date
    Jun 2008
    Posts
    18
    Plugin Contributions
    0

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

    Thanks for getting back to me. I tried it and now the menu bar is displaying on two line in IE and Firefox.

    I tried removing the extra drop down menu items and it didn't work any better in IE and I tried making the font smaller and that did fix it either.

    When I changed width:auto for the IE hack as well that made it fit to one line although the text "shopping cart" is wrapping and making the bar taller. But that looks better already!

    Thanks,

    Jackie

 

 

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