Don't know what I've done but HOME CATEGORIES INFORMATION etc has shifted over to the far left, any ideas? www.actorxfactor.co.uk
Don't know what I've done but HOME CATEGORIES INFORMATION etc has shifted over to the far left, any ideas? www.actorxfactor.co.uk
It was an issue with the way you commented things in includes/templates/YOUR_TEMPLATE/css/stylesheet_header_menu.css
Just replace the top color section of that file with this:
Code:body { behavior: url(includes/csshover.htc); } /*green div#dropMenu li a:hover, div#dropMenu li.submenu li.submenu:hover {color: #4f4f4f!important;background:#D5E88F;} */ /*blue*/ div#dropMenu li a:hover, div#dropMenu li.submenu li.submenu:hover, div#dropMenu ul.level2 a:hover {color: #ffffff!important;background:#6C99D9;} /*red div#dropMenu li a:hover, div#dropMenu li.submenu li.submenu:hover, div#dropMenu ul.level2 a:hover {color: #ffffff!important;background:#DC262E;} */ /*grey div#dropMenu li a:hover, div#dropMenu li.submenu li.submenu:hover, div#dropMenu ul.level2 a:hover {color: #4f4f4f!important;background:#D5D5D5;} */
Hi Jade,
I would like to change order in which the links appear in the dropdown navigation menu.
In addition to the regular pages (discount coupons, etc.) under INFORMATION, I have 7 ezpages added.
Also, I would like to move one of the ezpages under the CATEGORIES dropdown menu but it will not be a category, just an information page for the categories.
Is this possible?
Thanks in advance,
Julie
You want to sort the ezpage links? Have you given them a sort order for the header when you add them?
As far as the ezpage under the categories, I don't think that will work very well... actually wait, we can do a manual work around. Open up includes/classes/categories_ul_generator.php, and change this line:
to this:Code:$parent_group_end_string = '</ul>',
Of course replacing "index.php?main_page=page&id=2" with your own link.Code:$parent_group_end_string = '<li><a href="index.php?main_page=page&id=2">YOUR PAGE NAME</a></li></ul>',
Hi Jade,
One more question about the Information dropdown menu. Iwas able to change the tpl_drop_menu.php and put the ez pages before the Privacy, Sitempa, etc. pages. I tried working with the header sort order to arrange the links in the order that I need them and they display properly in the horizontal menu but not so in the drop down menu. Is there a way to get the order displayed here too?
Thanks,
Juliet
Sorry! This was due to an error that I keep SWEARING that I have fixed and uploaded, but yet I haven't!
Open up includes/modules/sideboxes/apple_zen/ez_pages_drop_menu.php and change this:
to ths:Code:$page_query = $db->Execute("select * from " . TABLE_EZPAGES . " where status_header = 1 order by sidebox_sort_order, pages_title");
Code:$page_query = $db->Execute("select * from " . TABLE_EZPAGES . " where status_header = 1 order by header_sort_order, pages_title");
Hi Jade,
I am having a problem with my drops down menu. You helped me with the alterations below and I am wondering if this has anything to do with it.
What I want to do is make a simple change. I renamed the "Categories" section to "Candles" and want to rename it to "Shop Now". I have updated this file: includes/languages/apple_zen/english.php like this:
// categories box text in sideboxes/categories.php
define('BOX_HEADING_CATEGORIES', 'Shop Now');
but the actual category title still shows "Candles".
Do you what I am doing wrong?
Thank you