Page 1 of 2 12 LastLast
Results 1 to 10 of 3041

Hybrid View

  1. #1
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by actorxfactor View Post
    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;}
    */

  2. #2
    Join Date
    Aug 2007
    Posts
    84
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by jettrue View Post
    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;}
    */
    You're amazing...ta VM

  3. #3
    Join Date
    Nov 2006
    Posts
    29
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    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

  4. #4
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by julie.t View Post
    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:

    Code:
    $parent_group_end_string = '</ul>',
    to this:

    Code:
    $parent_group_end_string = '<li><a href="index.php?main_page=page&id=2">YOUR PAGE NAME</a></li></ul>',
    Of course replacing "index.php?main_page=page&id=2" with your own link.

  5. #5
    Join Date
    Nov 2006
    Posts
    29
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by jettrue View Post
    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:

    Code:
    $parent_group_end_string = '</ul>',
    to this:

    Code:
    $parent_group_end_string = '<li><a href="index.php?main_page=page&id=2">YOUR PAGE NAME</a></li></ul>',
    Of course replacing "index.php?main_page=page&id=2" with your own link.
    Thanks Jade! It worked great!

  6. #6
    Join Date
    Nov 2006
    Posts
    29
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    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

  7. #7
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by julie.t View Post
    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:

    Code:
     $page_query = $db->Execute("select * from " . TABLE_EZPAGES . " where status_header = 1 order by sidebox_sort_order, pages_title");
    to ths:

    Code:
    $page_query = $db->Execute("select * from " . TABLE_EZPAGES . " where status_header = 1 order by header_sort_order, pages_title");

  8. #8
    Join Date
    Nov 2006
    Posts
    29
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Thank you! Worked great.

  9. #9
    Join Date
    Nov 2006
    Posts
    29
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    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


    Quote Originally Posted by jettrue View Post
    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:

    Code:
    $parent_group_end_string = '</ul>',
    to this:

    Code:
    $parent_group_end_string = '<li><a href="index.php?main_page=page&id=2">YOUR PAGE NAME</a></li></ul>',
    Of course replacing "index.php?main_page=page&id=2" with your own link.

  10. #10
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by julie.t View Post
    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
    Yes, you just changed it for the sidebox. To change it in the drop down menu, adjust it in includes/languages/english/extra_definitions/YOUR_TEMPLATE/headermenu.php

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Zen Lightbox addon [Support Thread]
    By Alex Clarke in forum All Other Contributions/Addons
    Replies: 3726
    Last Post: 2 Feb 2026, 06:28 PM
  2. Cherry Zen Template Support Thread
    By jettrue in forum Addon Templates
    Replies: 3250
    Last Post: 13 Nov 2017, 08:02 PM
  3. v151 Zen Magnific Support Thread
    By mutinyzoo in forum All Other Contributions/Addons
    Replies: 79
    Last Post: 14 Sep 2015, 04:39 AM
  4. Simple Zen Template - Support Thread
    By jettrue in forum Addon Templates
    Replies: 461
    Last Post: 27 Apr 2013, 01:33 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