Re: CSS Dropdown menu for your header- With Categories!
Quote:
Originally Posted by
jettrue
Ah, the issue is a small error in includes/templates/YOUR_TEMPLATE/css/stylesheet_header_menu.css
Change this:
Code:
/*green */
div#dropMenu li a:hover, div#dropMenu li.submenu li.submenu:hover {color: #6084c4!important;background:#85d1ce;}
*/
To this:
Code:
/*green */
div#dropMenu li a:hover, div#dropMenu li.submenu li.submenu:hover {color: #6084c4!important;background:#85d1ce;}
Thanks jettrue, I made the suggested changes and still have the problem. Everything works perfectly in Firefox but menu is still out to the right on IE browsers.
http://stunstasersandmore.com
Re: CSS Dropdown menu for your header- With Categories!
Quote:
Originally Posted by
dnolan
Thanks jettrue, I made the suggested changes and still have the problem. Everything works perfectly in Firefox but menu is still out to the right on IE browsers.
http://stunstasersandmore.com
Try adding a left:0; to #dropMenuWrapperc and #dropMenuWrapperd in stylesheet.css.
Re: CSS Dropdown menu for your header- With Categories!
Wow, this is a long thread LOL
I have the mod working on my site at www.gourmetshoppe.net and looks great, so thanks to the contributor. However, I wanted to make a change and wasnt sure how to go about it.
I would like to have the Contact Us box changed to Brands and then be able to add Ezpages with my Brands as a flyout from this box. Can someone explain how to do this? Right now when I add an Ezpage to the header, it automatically gets put under Information....which is fine so far, but I'd like to have a flyout menu for my Brands. I also dont want it dynamically filled in, I want to pick and choose which Brands I want to add, hence the reason for using the Ezpages instead of the Manufacturer sidebox or other dynamic option.
Can anyone help with this on exactly what changes I need to make? Thanks.
Re: CSS Dropdown menu for your header- With Categories!
Quote:
Originally Posted by
gourmets
Wow, this is a long thread LOL
I have the mod working on my site at
www.gourmetshoppe.net and looks great, so thanks to the contributor. However, I wanted to make a change and wasnt sure how to go about it.
I would like to have the Contact Us box changed to Brands and then be able to add Ezpages with my Brands as a flyout from this box. Can someone explain how to do this? Right now when I add an Ezpage to the header, it automatically gets put under Information....which is fine so far, but I'd like to have a flyout menu for my Brands. I also dont want it dynamically filled in, I want to pick and choose which Brands I want to add, hence the reason for using the Ezpages instead of the Manufacturer sidebox or other dynamic option.
Can anyone help with this on exactly what changes I need to make? Thanks.
Hmm... ok, open up includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php and remove this section:
Code:
<?php require(DIR_WS_MODULES . 'sideboxes/' . $template_dir . '/' . 'ezpages_drop_menu.php'); ?>
Then Change this:
Code:
<li><a href="<?php echo zen_href_link(FILENAME_CONTACT_US, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CONTACT_US; ?></a></li>
To this:
Code:
<li class="submenu"><a href="<?php echo zen_href_link(FILENAME_CONTACT_US, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CONTACT_US; ?></a>
<ul class="level2">
<?php require(DIR_WS_MODULES . 'sideboxes/' . $template_dir . '/' . 'ezpages_drop_menu.php'); ?>
</ul>
</li>
Now all of your "ez-pages" will be under the "Contact Us" section. Then you can change the text "contact us" to whatever you want, in includes/languages/english/extra_definitions/YOUR_TEMPLATE/headermenu.php
Re: CSS Dropdown menu for your header- With Categories!
Quote:
Originally Posted by
gourmets
I also dont want it dynamically filled in, I want to pick and choose which Brands I want to add, hence the reason for using the Ezpages instead of the Manufacturer sidebox or other dynamic option.
Can anyone help with this on exactly what changes I need to make? Thanks.
Jade,
I think you missed the little caveat that Gourmets threw in his question. Looks to me like he'll have to add the EZpages to his Brands menu manually the way I did with my site.
Maury
Re: CSS Dropdown menu for your header- With Categories!
Quote:
Originally Posted by
mauryg
Jade,
I think you missed the little caveat that Gourmets threw in his question. Looks to me like he'll have to add the EZpages to his Brands menu manually the way I did with my site.
Maury
Ah, I see, well, if he uses ez-pages, can't he just only make an ezpage for the brands he wants to show? What I suggests MOVES ezpages TO the "contact us" menu (which he will rename "Brands"), and then he can make the ezpages he choses. :-)
Re: CSS Dropdown menu for your header- With Categories!
Yeah, there are always a number of solutions to any problem. He could also make a category called "Featured Brands" with no products. Then he could make his chosen brands subcategories under this and the logo and description of each of them would appear in menu flyouts from the main link. The beauty of this would be he could also put specific or featured products under the brands as sub-subcategories. That way the menu would build itself automatically and to my thinking it 'belongs' with the product category menu.
BTW Love the new avatar. The kids and the dog are cute. :hug:
Re: CSS Dropdown menu for your header- With Categories!
Thanks to those who attempted to help me with my Brands header. Sorry for the delay, but I had a house fire to deal with! :dontgetit
In any case, I have moved my ezpages to the former Contact Us header and renamed that to Information. I then renamed the former Information header to Brands, now Im just confused as to how to get the Brands underneath the header. In other words, I need 2 sets of ezpages for the header. I have one set of ezpages with such links as Shipping policy, Live Support, FAQ's, etc under the Information header. I need another set to show up under the Brands header...but if I add them now, they will only show up under the Information header. See what I am talking about here: www.gourmetshoppe.net
Is there a way that I can duplicate the ez_pages_dropmenu.php file and add a second set of ezpages only for the Brands? I would prefer to use ezpages for this instead of categories and subcategories if I can. Thanks.
Re: CSS Dropdown menu for your header- With Categories!
Quote:
Originally Posted by
gourmets
Thanks to those who attempted to help me with my Brands header. Sorry for the delay, but I had a house fire to deal with! :dontgetit
In any case, I have moved my ezpages to the former Contact Us header and renamed that to Information. I then renamed the former Information header to Brands, now Im just confused as to how to get the Brands underneath the header. In other words, I need 2 sets of ezpages for the header. I have one set of ezpages with such links as Shipping policy, Live Support, FAQ's, etc under the Information header. I need another set to show up under the Brands header...but if I add them now, they will only show up under the Information header. See what I am talking about here:
www.gourmetshoppe.net
Is there a way that I can duplicate the ez_pages_dropmenu.php file and add a second set of ezpages only for the Brands? I would prefer to use ezpages for this instead of categories and subcategories if I can. Thanks.
I've never done that, I don't know if that would work, I don't think so.
You're going to have to do one or the other manually. For whatever drop menu you want "Brands" to be, I'd leave the ezpage code there. Then for your new information, you'll have to create the links to the specific ezpages manually.
Re: CSS Dropdown menu for your header- With Categories!
Quote:
Originally Posted by
jettrue
I've never done that, I don't know if that would work, I don't think so.
You're going to have to do one or the other manually. For whatever drop menu you want "Brands" to be, I'd leave the ezpage code there. Then for your new information, you'll have to create the links to the specific ezpages manually.
Ok, but how to do you create them manually? This is one of the things I wasnt aware of how to do. Do I have to put the links into the actual file? Or is there something else? I dont understand the manual part.