Re: CSS Dropdown menu for your header- With Categories!
Quote:
Originally Posted by
jettrue
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
That did it Jade.
Many thanks once again.
Re: CSS Dropdown menu for your header- With Categories!
Quote:
Originally Posted by
jettrue
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.
Re: CSS Dropdown menu for your header- With Categories!
Quote:
Originally Posted by
darkswan
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.
Can you explain more what you mean? Do you mean if you turn all the right sideboxes off? I tested by turning all the right sideboxes off, and could not replicate the issue.
Re: CSS Dropdown menu for your header- With Categories!
Quote:
Originally Posted by
jettrue
Can you explain more what you mean? Do you mean if you turn all the right sideboxes off? I tested by turning all the right sideboxes off, and could not replicate the issue.
No, if you turn the right column off globally on the layout settings page in the admin. Turn it on and the flyout menu works, turn it off and the menu breaks.
Apparently there is a div tag that needs to be there for the global right column.
Re: CSS Dropdown menu for your header- With Categories!
Quote:
Originally Posted by
darkswan
No, if you turn the right column off globally on the layout settings page in the admin. Turn it on and the flyout menu works, turn it off and the menu breaks.
Apparently there is a div tag that needs to be there for the global right column.
That is what I did on my test site, and the issue did not occur. I'm not sure why turning off the right column would add <div> and </div> in the middle of the drop menu code?
Re: CSS Dropdown menu for your header- With Categories!
Quote:
Originally Posted by
jvoce
I'm hacing a problem with the menus in earlier IEs. The dropdown menu displays behind the category filter menu. I've enclosed a pic, and you can view a test site
here.
I haven't been able to figure this one out yet. Can someone help?
Re: CSS Dropdown menu for your header- With Categories!
Quote:
Originally Posted by
jvoce
I haven't been able to figure this one out yet. Can someone help?
Have you tried adjusting the z-index's on the drop down menu CSS?
Re: CSS Dropdown menu for your header- With Categories!
Quote:
Originally Posted by
jvoce
I haven't been able to figure this one out yet. Can someone help?
Have you tried the newest version? I believe I fixed that problem, though to be honest I'm not sure which of my changes fixed it.
Edited to ADD: So sorry, I thought I was responding to my Apple Zen thread.... I'll get back to you on this...
Re: CSS Dropdown menu for your header- With Categories!
Under the heading "Information" in my dropdown list I am attempting (unsuccessfully) to add a category with subcategories, but it ain't pretty!! :no:
Specifically, on my PittiVintage site I would Like a "Charts" category with "Size Charts" and "Item Condition" as subcategories. How would I achieve that?
Thanks for any and all suggestions.
Re: CSS Dropdown menu for your header- With Categories!
Quote:
Originally Posted by
MeltDown
Under the heading "Information" in my dropdown list I am attempting (unsuccessfully) to add a category with subcategories, but it ain't pretty!! :no:
Specifically, on my
PittiVintage site I would Like a "Charts" category with "Size Charts" and "Item Condition" as subcategories. How would I achieve that?
Thanks for any and all suggestions.
Have you tried kind of copying the HTML of the categories section?
Code:
<li class="submenu"><a href="http://www.zencart137.jadetrue.com/index.php?main_page=index">Information</a>
<ul class="level2">
<li class="submenu">
<a href="http://www.zencart137.jadetrue.com/index.php?main_page=index&cPath=2">Category with A Subcategory</a>
<ul class="level3">
<li class="submenu">
<a href="http://www.zencart137.jadetrue.com/index.php?main_page=index&cPath=3">Subcategory</a>
</li>
</ul>
</li></ul></li>
I hope I got that right... these things are always tricky, and its easy to miss something. If you get it close, but not quite, I can always look at your source and help you find whats wrong.