Page 124 of 235 FirstFirst ... 2474114122123124125126134174224 ... LastLast
Results 1,231 to 1,240 of 2345
  1. #1231
    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!!!

  2. #1232
    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?

  3. #1233
    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

  4. #1234
    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

  5. #1235
    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.

  6. #1236
    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

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

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

    I played with the width and fixed it with this code:

    div#dropMenu li {
    position:relative;
    list-style:none;
    margin:0;
    float:left;
    line-height:1em;
    width:auto;
    margin-right:1.2em;
    padding-left: .85em;
    *padding-left: .45em;

    }

    Now I am having a problem with the drop down menus. The background color is not filling in the entire space. There is a weird clear gap to the right in IE and Firefox when the boxes drop and then a gap on the left on hover.

    Any suggestions would be appreciated.

    Cheers,

    Jackie

  8. #1238
    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
    I played with the width and fixed it with this code:

    div#dropMenu li {
    position:relative;
    list-style:none;
    margin:0;
    float:left;
    line-height:1em;
    width:auto;
    margin-right:1.2em;
    padding-left: .85em;
    *padding-left: .45em;

    }

    Now I am having a problem with the drop down menus. The background color is not filling in the entire space. There is a weird clear gap to the right in IE and Firefox when the boxes drop and then a gap on the left on hover.

    Any suggestions would be appreciated.

    Cheers,

    Jackie
    Did you not try the code I gave you?

  9. #1239
    Join Date
    Apr 2008
    Posts
    48
    Plugin Contributions
    0

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

    Hello, Love the hard work put into this mod for all of us !! Just wondering , and went through a lot of this post, but i must of missed this ..

    Can you tell me how to change the home link? I would like when you click on home, it takes me to my original homepage and not the catalog home page. So in essence, I would like when someone clicks on home, it takes them to www.jygoods.com

    Thanks a lot !!!!

  10. #1240
    Join Date
    May 2006
    Posts
    7
    Plugin Contributions
    0

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

    I am really challenged by the Fly Out Menu. I need some help. As it is now, all the high level categories are veritically under 1 tab called categores.

    What i need is help on taking this Addon Fly Out Menu and make it work so that each first level category is a separate menu tab.

    Can anyone help me with this?

    Thanks

 

 

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