Zen Cart Logo
Forums / All Other Contributions/Addons / Footer Menu Support Thread

Footer Menu Support Thread

Views: 81,602

Results 381 to 400 of 535
26 Jan 2011, 10:30 AM
#381
Join Date:
Jan 2011
Posts:
15
Plugin Contributions:
0

Footer Menu Support Thread

Hi Clyde,

Pretty much read through the whole topic and couldn't find what I was after.

I'm not using the EZpages for links but am using it for the heading, hence having it switched on. How can I add an image below the heading 'Accepted Payments'.

https://www.gadgetaccessorystore.co.uk

Many thanks in advance.

26 Jan 2011, 3:34 PM
#382
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Footer Menu Support Thread

gadgetaccessorystore:

Hi Clyde,

Pretty much read through the whole topic and couldn't find what I was after.

I'm not using the EZpages for links but am using it for the heading, hence having it switched on. How can I add an image below the heading 'Accepted Payments'.

https://www.gadgetaccessorystore.co.uk

Many thanks in advance.

can you post the edits you made to includes/languages/english/extra_definitions/YOUR_TEMPLATE/footer_menu_defines.php

26 Jan 2011, 8:03 PM
#383
Join Date:
Jan 2011
Posts:
15
Plugin Contributions:
0

Re: Footer Menu Support Thread

Hi Clyde,

This is the content of the file you mentioned:

Thanks for the help, much appreciated.

<?php
/**
 * Footer Menu Definitions
 *
 * @package templateSystem
 * @copyright Copyright 2003-2005 Zen Cart Development Team
 * @copyright Portions Copyright 2003 osCommerce
 * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V3.0
 * @version $Id: footer_menu_deines.php 1.0 5/9/2009 Clyde Jones $
 */

/*BOF Menu Column 1 link Definitions*/
Define('TITLE_ONE', '<li class="menuTitle">Quick Links</li>');
Define('HOME', '<li><a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . HEADER_TITLE_CATALOG . '</a></li>');
Define('FEATURED','<li><a href="' . zen_href_link(FILENAME_FEATURED_PRODUCTS) . '">' .  TABLE_HEADING_FEATURED_PRODUCTS .  '</a></li>');
Define('NEWPRODUCTS', '<li><a href="' . zen_href_link(FILENAME_PRODUCTS_NEW) . '">' . BOX_HEADING_WHATS_NEW . '</a></li>');
Define('ALLPRODUCTS', '<li><a href="' . zen_href_link(FILENAME_PRODUCTS_ALL) . '">' .CATEGORIES_BOX_HEADING_PRODUCTS_ALL . '</a></li>');
Define('ACCOUNT', '<li><a href="' . zen_href_link(FILENAME_ACCOUNT, '', 'SSL') .'">' . HEADER_TITLE_MY_ACCOUNT . '</a></li>');
/*EOF Menu Column 1 link Definitions*/

/*BOF Menu Column 2 link Definitions*/
Define('TITLE_TWO', '<li class="menuTitle">Information</li>');
Define('ABOUT', '<li><a href="' . zen_href_link(FILENAME_ABOUT_US) . '">' . BOX_INFORMATION_ABOUT_US . '</a></li>');
Define('SHIPPING', '<li><a href="' . zen_href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING . '</a></li>');
Define('PRIVACY', '<li><a href="' . zen_href_link(FILENAME_PRIVACY) . '">' . BOX_INFORMATION_PRIVACY . '</a></li>');
Define('CONDITIONS','<li><a href="' . zen_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS . '</a></li>');
Define('SITEMAP', '<li><a href="' . zen_href_link(FILENAME_SITE_MAP) . '">' . BOX_INFORMATION_SITE_MAP . '</a></li>');
/*EOF Menu Column 2 link Definitions*/

/*BOF Menu Column 3 link Definitions*/
Define('TITLE_THREE', '<li class="menuTitle">Customer Service</li>');
Define('ACCOUNT', '<li><a href="' . zen_href_link(FILENAME_ACCOUNT, '', 'SSL') .'">' . HEADER_TITLE_MY_ACCOUNT . '</a></li>');
Define('CONTACT','<li><a href="' . zen_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a></li>');
Define('UNSUBSCRIBE', '<li><a href="' . zen_href_link(FILENAME_UNSUBSCRIBE) . '">' . BOX_INFORMATION_UNSUBSCRIBE . '</a></li>');
/*EOF Menu Column 3 link Definitions*/

/*BOF Menu Column 4 link Definitions*/
Define('TITLE_FOUR', '<li class="menuTitle">Accepted Payments</li>');
/*The actual links are determined by "footer links" set in EZ-Pages
*EOF Menu Column 4 link Definitions
*/

/*BOF Footer Menu Definitions*/
Define('QUICKLINKS', '<dd class="first">
<ul>' . TITLE_ONE . HOME . FEATURED . NEWPRODUCTS . ALLPRODUCTS . ACCOUNT . '</ul></dd>');
Define('INFORMATION', '<dd class="second">
<ul>' . TITLE_TWO . ABOUT . SHIPPING . PRIVACY . CONDITIONS . SITEMAP . '</ul></dd>');
Define('CUSTOMER_SERVICE', '<dd class="third">
<ul>' . TITLE_THREE . ACCOUNT . CONTACT . UNSUBSCRIBE . '</ul></dd>');
Define('IMPORTANT', '<dd><ul>' . TITLE_FOUR);


Define('IMPORTANT_END', '</ul></dd>');
/*EOF Footer Menu Definitions*/


define('TWITTER', 'http://www.twitter.com/G_A_Store');
define('FACEBOOK','http://www.facebook.com/');
 

//EOF
26 Jan 2011, 9:02 PM
#384
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Footer Menu Support Thread

gadgetaccessorystore:

Hi Clyde,

This is the content of the file you mentioned:

Thanks for the help, much appreciated.

<?php /** * Footer Menu Definitions * * @package templateSystem * @copyright Copyright 2003-2005 Zen Cart Development Team * @copyright Portions Copyright 2003 osCommerce * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V3.0 * @version $Id: footer_menu_deines.php 1.0 5/9/2009 Clyde Jones $ */ /*BOF Menu Column 1 link Definitions*/ Define('TITLE_ONE', '<li class="menuTitle">Quick Links</li>'); Define('HOME', '<li><a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . HEADER_TITLE_CATALOG . '</a></li>'); Define('FEATURED','<li><a href="' . zen_href_link(FILENAME_FEATURED_PRODUCTS) . '">' . TABLE_HEADING_FEATURED_PRODUCTS . '</a></li>'); Define('NEWPRODUCTS', '<li><a href="' . zen_href_link(FILENAME_PRODUCTS_NEW) . '">' . BOX_HEADING_WHATS_NEW . '</a></li>'); Define('ALLPRODUCTS', '<li><a href="' . zen_href_link(FILENAME_PRODUCTS_ALL) . '">' .CATEGORIES_BOX_HEADING_PRODUCTS_ALL . '</a></li>'); Define('ACCOUNT', '<li><a href="' . zen_href_link(FILENAME_ACCOUNT, '', 'SSL') .'">' . HEADER_TITLE_MY_ACCOUNT . '</a></li>'); /*EOF Menu Column 1 link Definitions*/ /*BOF Menu Column 2 link Definitions*/ Define('TITLE_TWO', '<li class="menuTitle">Information</li>'); Define('ABOUT', '<li><a href="' . zen_href_link(FILENAME_ABOUT_US) . '">' . BOX_INFORMATION_ABOUT_US . '</a></li>'); Define('SHIPPING', '<li><a href="' . zen_href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING . '</a></li>'); Define('PRIVACY', '<li><a href="' . zen_href_link(FILENAME_PRIVACY) . '">' . BOX_INFORMATION_PRIVACY . '</a></li>'); Define('CONDITIONS','<li><a href="' . zen_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS . '</a></li>'); Define('SITEMAP', '<li><a href="' . zen_href_link(FILENAME_SITE_MAP) . '">' . BOX_INFORMATION_SITE_MAP . '</a></li>'); /*EOF Menu Column 2 link Definitions*/ /*BOF Menu Column 3 link Definitions*/ Define('TITLE_THREE', '<li class="menuTitle">Customer Service</li>'); Define('ACCOUNT', '<li><a href="' . zen_href_link(FILENAME_ACCOUNT, '', 'SSL') .'">' . HEADER_TITLE_MY_ACCOUNT . '</a></li>'); Define('CONTACT','<li><a href="' . zen_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a></li>'); Define('UNSUBSCRIBE', '<li><a href="' . zen_href_link(FILENAME_UNSUBSCRIBE) . '">' . BOX_INFORMATION_UNSUBSCRIBE . '</a></li>'); /*EOF Menu Column 3 link Definitions*/ /*BOF Menu Column 4 link Definitions*/ Define('TITLE_FOUR', '<li class="menuTitle">Accepted Payments</li>'); /*The actual links are determined by "footer links" set in EZ-Pages *EOF Menu Column 4 link Definitions */ /*BOF Footer Menu Definitions*/ Define('QUICKLINKS', '<dd class="first"> <ul>' . TITLE_ONE . HOME . FEATURED . NEWPRODUCTS . ALLPRODUCTS . ACCOUNT . '</ul></dd>'); Define('INFORMATION', '<dd class="second"> <ul>' . TITLE_TWO . ABOUT . SHIPPING . PRIVACY . CONDITIONS . SITEMAP . '</ul></dd>'); Define('CUSTOMER_SERVICE', '<dd class="third"> <ul>' . TITLE_THREE . ACCOUNT . CONTACT . UNSUBSCRIBE . '</ul></dd>'); Define('IMPORTANT', '<dd><ul>' . TITLE_FOUR); Define('IMPORTANT_END', '</ul></dd>'); /*EOF Footer Menu Definitions*/ define('TWITTER', 'http://www.twitter.com/G_A_Store'); define('FACEBOOK','http://www.facebook.com/'); //EOF ``` You can add your image by defining it as follows: /*BOF Menu Column 4 link Definitions*/ Define('TITLE_FOUR', '<li class="menuTitle">Accepted Payments</li>'); <li>add the image information here</li> /*The actual links are determined by "footer links" set in EZ-Pages *EOF Menu Column 4 link Definitions */
26 Jan 2011, 9:36 PM
#385
Join Date:
Jan 2011
Posts:
15
Plugin Contributions:
0

Re: Footer Menu Support Thread

clydejones:

You can add your image by defining it as follows:

/BOF Menu Column 4 link Definitions/
Define('TITLE_FOUR', '<li class="menuTitle">Accepted Payments</li>');

<li>add the image information here</li>

/*The actual links are determined by "footer links" set in EZ-Pages
*EOF Menu Column 4 link Definitions
*/

I tried it and all I get is a white page.

/*BOF Menu Column 4 link Definitions*/
Define('TITLE_FOUR', '<li class="menuTitle">Accepted Payments</li>');

<li><img src='/images/payments/visa.jpg'></li>

/*The actual links are determined by "footer links" set in EZ-Pages
*EOF Menu Column 4 link Definitions
*/
26 Jan 2011, 10:06 PM
#386
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Footer Menu Support Thread

gadgetaccessorystore:

I tried it and all I get is a white page.

/BOF Menu Column 4 link Definitions/
Define('TITLE_FOUR', '<li class="menuTitle">Accepted Payments</li>');

<li><img src='/images/payments/visa.jpg'></li>

/*The actual links are determined by "footer links" set in EZ-Pages
*EOF Menu Column 4 link Definitions
*/


Try this


/*BOF Menu Column 4 link Definitions*/
Define('TITLE_FOUR', '<li class="menuTitle">Accepted Payments</li>');

define('PAYMENTS', '<li><img src='/images/payments/visa.jpg'></li>');


/*The actual links are determined by "footer links" set in EZ-Pages
*EOF Menu Column 4 link Definitions
*/

/*BOF Footer Menu Definitions*/
Define('QUICKLINKS', '<dd class="first">
<ul>' . TITLE_ONE . HOME . FEATURED . NEWPRODUCTS . ALLPRODUCTS . ACCOUNT . '</ul></dd>');
Define('INFORMATION', '<dd class="second">
<ul>' . TITLE_TWO . ABOUT . SHIPPING . PRIVACY . CONDITIONS . SITEMAP . '</ul></dd>');
Define('CUSTOMER_SERVICE', '<dd class="third">
<ul>' . TITLE_THREE . ACCOUNT . CONTACT . UNSUBSCRIBE . '</ul></dd>');
Define('IMPORTANT', '<dd><ul>' . TITLE_FOUR  . PAYMENTS);

27 Jan 2011, 6:54 AM
#387
Join Date:
Jan 2011
Posts:
15
Plugin Contributions:
0

Re: Footer Menu Support Thread

clydejones:

Try this

/BOF Menu Column 4 link Definitions/
Define('TITLE_FOUR', '<li class="menuTitle">Accepted Payments</li>');

define('PAYMENTS', '<li><img src='/images/payments/visa.jpg'></li>');

/*The actual links are determined by "footer links" set in EZ-Pages
*EOF Menu Column 4 link Definitions
*/

/BOF Footer Menu Definitions/
Define('QUICKLINKS', '<dd class="first">

<ul>' . TITLE_ONE . HOME . FEATURED . NEWPRODUCTS . ALLPRODUCTS . ACCOUNT . '</ul></dd>'); Define('INFORMATION', '<dd class="second"> <ul>' . TITLE_TWO . ABOUT . SHIPPING . PRIVACY . CONDITIONS . SITEMAP . '</ul></dd>'); Define('CUSTOMER_SERVICE', '<dd class="third"> <ul>' . TITLE_THREE . ACCOUNT . CONTACT . UNSUBSCRIBE . '</ul></dd>'); Define('IMPORTANT', '<dd><ul>' . TITLE_FOUR . PAYMENTS);

Thanks for the help. I gave it a shot but still a white page. Does it have anything to do with folder permissions because when I tried to access the image itself on the server I get a permission denied page.

27 Jan 2011, 7:05 AM
#388
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Footer Menu Support Thread

gadgetaccessorystore:

Thanks for the help. I gave it a shot but still a white page. Does it have anything to do with folder permissions because when I tried to access the image itself on the server I get a permission denied page.

try this change:

define('PAYMENTS', '<li><img src="/images/payments/visa.jpg"></li>');

27 Jan 2011, 6:07 PM
#389
Join Date:
Jan 2011
Posts:
15
Plugin Contributions:
0

Re: Footer Menu Support Thread

clydejones:

try this change:

define('PAYMENTS', '<li><img src="/images/payments/visa.jpg"></li>');

Perfect thank you.

28 Jan 2011, 3:42 AM
#390
zfw88788301 avatar

zfw88788301

New Zenner

Join Date:
Dec 2010
Posts:
28
Plugin Contributions:
0

Re: Footer Menu Support Thread

Hello!clydejones,:smile:

I've installed this module on my website but i got a problem on my final step! you can visit my website at www.ShopEzone.com

as you can see on the footer like the picture i've attached.


Here is my footer_menu_defines.php code:

<?php /** * Footer Menu Definitions * * @package templateSystem * @copyright Copyright 2003-2005 Zen Cart Development Team * @copyright Portions Copyright 2003 osCommerce * @license <http://www.zen-cart.com/license/2_0.txt> GNU Public License V3.0 * @version $Id: footer_menu_deines.php 1.0 5/9/2009 Clyde Jones $ */ /*BOF Menu Column 1 link Definitions*/ Define('TITLE_ONE', '<li class="menuTitle">Quick Links</li>'); Define('HOME','<li><a href=" http://www.ShopEzone.com">Home</a></li>'); //Define('HOME', '<li><a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . HEADER_TITLE_CATALOG . '</a></li>'); //Define('SPECIALS', '<li><a href="' . zen_href_link(FILENAME_SPECIALS) . '">' . BOX_HEADING_SPECIALS . '</a></li>'); Define('NEWPRODUCTS', '<li><a href="' . zen_href_link(FILENAME_PRODUCTS_NEW) . '">' . BOX_HEADING_WHATS_NEW . '</a></li>'); //Define('FEATURED','<li><a href="' . zen_href_link(FILENAME_FEATURED_PRODUCTS) . '">' . TABLE_HEADING_FEATURED_PRODUCTS . '</a></li>'); //Define('ALLPRODUCTS', '<li><a href="' . zen_href_link(FILENAME_PRODUCTS_ALL) . '">' .CATEGORIES_BOX_HEADING_PRODUCTS_ALL . '</a></li>'); //Define('PAYMENT_METHOD', '<li><a href="' . zen_ez_pages_link(25) . '"> TABLE_HEADING_PAYMENT_METHODS </a></li>'); Define('PAYMENT_METHOD', '<li><a href="' . zen_ez_pages_link(25) . '"> Payment Methods </a></li>'); Define('SHIPPING_GUIDE', '<li><a href="' . zen_ez_pages_link(26) . '"> Shipping Guide </a></li>'); Define('NEW_USER_GUIDE', '<li><a href="' . zen_ez_pages_link(27) . '"> New User Guide </a></li>'); /*EOF Menu Column 1 link Definitions*/ /*OF Menu Column 2 link Definitions*/ Define('TITLE_TWO', '<li class="menuTitle">Information</li>'); Define('ABOUT', '<li><a href="' . zen_href_link(FILENAME_ABOUT_US) . '">' . BOX_INFORMATION_ABOUT_US . '</a></li>'); Define('SITEMAP', '<li><a href="' . zen_href_link(FILENAME_SITE_MAP) . '">' . BOX_INFORMATION_SITE_MAP . '</a></li>'); Define('GVFAQ', '<li><a href="' . zen_href_link(FILENAME_GV_FAQ) . '">' . BOX_INFORMATION_GV . '</a></li>'); Define('COUPON', '<li><a href="' . zen_href_link(FILENAME_DISCOUNT_COUPON) . '">' . BOX_INFORMATION_DISCOUNT_COUPONS . '</a></li>'); Define('UNSUBSCRIBE', '<li><a href="' . zen_href_link(FILENAME_UNSUBSCRIBE) . '">' . BOX_INFORMATION_UNSUBSCRIBE . '</a></li>'); /*EOF Menu Column 2 link Definitions*/ /*BOF Menu Column 3 link Definitions*/ Define('TITLE_THREE', '<li class="menuTitle">Customer Service</li>'); Define('CONTACT','<li><a href="' . zen_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a></li>'); //Define('SHIPPING', '<li><a href="' . zen_href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING . '</a></li>'); //Define('PRIVACY', '<li><a href="' . zen_href_link(FILENAME_PRIVACY) . '">' . BOX_INFORMATION_PRIVACY . '</a></li>'); //Define('CONDITIONS','<li><a href="' . zen_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS . '</a></li>'); //Define('ACCOUNT', '<li><a href="' . zen_href_link(FILENAME_ACCOUNT, '', 'SSL') .'">' . HEADER_TITLE_MY_ACCOUNT . '</a></li>'); Define('TRACK_YOUR_ORDER', '<li><a href="' . zen_ez_pages_link(20) . '"> Track Your Order</a></li>'); Define('LIVE_CHAT', '<li><a href="' . zen_ez_pages_link(21) . '"> Live Chat</a></li>'); Define('SUBMIT_A_REQUEST', '<li><a href="' . zen_ez_pages_link(23) . '"> Submit A Request</a></li>'); Define('TECH_SUPPORT_AND_KNOWLEDGEBASE', '<li><a href="' . zen_ez_pages_link(24) . '"> Tech Support And Knowledgebase</a></li>'); /*EOF Menu Column 3 link Definitions*/ /*BOF Menu Column 4 link Definitions*/ Define('TITLE_FOUR', '<li class="menuTitle">Policies</li>'); /*The actual links are determined by "footer links" set in EZ-Pages *EOF Menu Column 4 link Definitions */ /*BOF Footer Menu Definitions*/ //Define('QUICKLINKS', '<dd class="first"> //<ul>' . TITLE_ONE . HOME . SPECIALS . NEWPRODUCTS .FEATURED . ALLPRODUCTS . '</ul></dd>'); //Define('INFORMATION', '<dd class="second"> //<ul>' . TITLE_TWO . ABOUT . SITEMAP . GVFAQ . COUPON . UNSUBSCRIBE . '</ul></dd>'); //Define('CUSTOMER_SERVICE', '<dd class="third"> //<ul>' . TITLE_THREE . CONTACT . SHIPPING . PRIVACY . CONDITIONS . ACCOUNT . '</ul></dd>'); Define('QUICKLINKS', '<dd class="first"> <ul>' . TITLE_ONE . HOME . NEWPRODUCTS . PAYMENT_METHOD . SHIPPING_GUIDE . NEW_USER_GUIDE . '</ul></dd>'); Define('INFORMATION', '<dd class="second"> <ul>' . TITLE_TWO . ABOUT . SITEMAP . GVFAQ . COUPON . UNSUBSCRIBE . '</ul></dd>'); Define('CUSTOMER_SERVICE', '<dd class="third"> <ul>' . TITLE_THREE . CONTACT . LIVE_CHAT . TRACK_YOUR_ORDER . SUBMIT_A_REQUEST . TECH_SUPPORT_AND_KNOWLEDGEBASE . '</ul></dd>'); Define('Policies', '<dd><ul>' . TITLE_FOUR); //Define('IMPORTANT_END', '</ul></dd>'); /*EOF Footer Menu Definitions*/ //EOF And here is my tpl_footer_menu.php code: <?php /* Page Template - tpl_footer_menu.php *Display the Footer Menu * @package templateSystem * @copyright Copyright 2003-2006 Zen Cart Development Team * @copyright Portions Copyright 2003 osCommerce * @license <http://www.zen-cart.com/license/2_0.txt> GNU Public License V2.0 * @version $Id: tpl_footer_menu.php 1.0 5/9/2009 Clyde Jones $ */ ?> <dl> <?php echo QUICKLINKS; ?> <?php echo INFORMATION; ?> <?php echo CUSTOMER_SERVICE; ?> <?php if (EZPAGES_STATUS_FOOTER == '1' or (EZPAGES_STATUS_FOOTER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?> <?php echo Policies; ?> <?php require($template->get_template_dir('tpl_ezpages_footer_menu.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_footer_menu.php'); ?> <!--<?php echo IMPORTANT_END; ?>--> <?php } ?> </dl>

Please help me figure out how to remove the return,private,term of use from the middle of the page just like the picture is! Thank you for your helping!

28 Jan 2011, 5:09 AM
#391
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Footer Menu Support Thread

zfw88788301:

Hello!clydejones,:smile:

I've installed this module on my website but i got a problem on my final step! you can visit my website at www.ShopEzone.com

as you can see on the footer like the picture i've attached.

Please help me figure out how to remove the return,private,term of use from the middle of the page just like the picture is! Thank you for your helping!

You seem to have added the following somewhere (not sure which file) and it can safely be deleted

<div class="ezpagesFooterCol col1" style="width: 100%">
<ul>
  <li><a href="http://www.shopezone.com/page.html?id=18">RETURN POLICY</a></li>
  <li><a href="http://www.shopezone.com/privacy.html">PRIVATE POLICY</a></li>

  <li><a href="http://www.shopezone.com/term_of_use.html">TERM OF USE</a></li>
</ul>
28 Jan 2011, 6:18 PM
#392
commdiver avatar

commdiver

Zen Follower

Join Date:
May 2010
Posts:
222
Plugin Contributions:
0

Re: Footer Menu Support Thread

Is there any way I could reduce the colums to three and center them? I am testing a dummy site at "qu een ch arlotte soaps.com / test" (without the spaces and quotations). This screenshot what it looks like now. If I remove "<?php echo QUICKLINKS; ?>" (without the quotations) from tpl_footer_menu.php and the entire first column data from footer_menu_defines.php, I get what you see in this screenshot. I tried a few thing, but as you can imagine, they did not work.

Any help would be appreciated. Thank you!

28 Jan 2011, 6:58 PM
#393
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Footer Menu Support Thread

mretzloff:

Is there any way I could reduce the colums to three and center them? I am testing a dummy site at "qu een ch arlotte soaps.com / test" (without the spaces and quotations). This screenshot what it looks like now. If I remove "<?php echo QUICKLINKS; ?>" (without the quotations) from tpl_footer_menu.php and the entire first column data from footer_menu_defines.php, I get what you see in this screenshot. I tried a few thing, but as you can imagine, they did not work.

Any help would be appreciated. Thank you!

read posts 376 - 380

31 Jan 2011, 4:01 AM
#394
zfw88788301 avatar

zfw88788301

New Zenner

Join Date:
Dec 2010
Posts:
28
Plugin Contributions:
0

Re: Footer Menu Support Thread

clydejones:

You seem to have added the following somewhere (not sure which file) and it can safely be deleted

<div class="ezpagesFooterCol col1" style="width: 100%"> <ul> <li><a href="http://www.shopezone.com/page.html?id=18">RETURN POLICY</a></li> <li><a href="http://www.shopezone.com/privacy.html">PRIVATE POLICY</a></li> <li><a href="http://www.shopezone.com/term_of_use.html">TERM OF USE</a></li> </ul> ```

Hello!clyde,

Thank you for your help.I've fixed my last problem. But, I got a new problem with my CSS, as you can see my "New Products" page at "http://www.shopezone.com/products_new.html" The css is mess up.

Please help me fix this CSS problem! Thank you for your helps!

31 Jan 2011, 5:13 AM
#395
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Footer Menu Support Thread

zfw88788301:

Hello!clyde,

Thank you for your help.I've fixed my last problem. But, I got a new problem with my CSS, as you can see my "New Products" page at "http://www.shopezone.com/products_new.html" The css is mess up.

Please help me fix this CSS problem! Thank you for your helps!

Sorry, but this doesn't seem to be related to the footer menu.

I'd suggest you check with the template author about what may be causing the problem.

1 Feb 2011, 2:59 AM
#396
zfw88788301 avatar

zfw88788301

New Zenner

Join Date:
Dec 2010
Posts:
28
Plugin Contributions:
0

Re: Footer Menu Support Thread

clydejones:

Sorry, but this doesn't seem to be related to the footer menu.

I'd suggest you check with the template author about what may be causing the problem.

Hi! clyde,

After i delete the "stylesheet_footer_menu.css" from my website. The css work fine on the "new product page" please check!

And please modify my stylesheet_footer_menu.css to me! Thank you for help you!

1 Feb 2011, 3:02 AM
#397
zfw88788301 avatar

zfw88788301

New Zenner

Join Date:
Dec 2010
Posts:
28
Plugin Contributions:
0

Re: Footer Menu Support Thread

zfw88788301:

Hi! clyde,

After i delete the "stylesheet_footer_menu.css" from my website. The css work fine on the "new product page" please check!

And please modify my stylesheet_footer_menu.css to me! Thank you for help you!

Here is my "stylesheet_footer_menu.css" and my "style_sheets.css" (if need!)

1 Feb 2011, 4:15 AM
#398
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Footer Menu Support Thread

zfw88788301:

Here is my "stylesheet_footer_menu.css" and my "style_sheets.css" (if need!)

You can make the following changes to the stylesheet_footer_menu.css

#navSuppWrapper dl {margin: 0 0 3px 0;padding:0;clear:both;height:79px;width:100%;}/Adjust the height and width of the menu/
#navSuppWrapper dt {margin-bottom:.3em;font-weight:bold;}
#navSuppWrapper dd {margin:0;padding:0;float:left;width:24.3%;}/Column width of the menu - currently set for 4 columns/
#navSuppWrapper ul {margin:0;padding:0;list-style: none;}
#navSuppWrapper li {margin:0;padding:0;}
#navSuppWrapper li a:link {letter-spacing:.1em;color:#444;margin:0;padding-left:2em;padding-bottom:.3em;font-size:.9em;display:block;}
#navSuppWrapper li a:visited {letter-spacing:.1em;color:#444;margin:0;padding-left:2em;padding-bottom:.3em;display:block;}
#navSuppWrapper li a:hover {letter-spacing:.1em;color:#444;margin:0;padding-left:2em;padding-bottom:.3em;display:block;}
#navSuppWrapper li a:active {letter-spacing:.1em;color: #444;margin:0;padding-left:2em;padding-bottom:.3em;display:block;}

1 Feb 2011, 1:16 PM
#399
arty101 avatar

arty101

New Zenner

Join Date:
Aug 2010
Posts:
22
Plugin Contributions:
0

Re: Footer Menu Support Thread

haredo:

@Clyde
I don't see this little jewel of a mod in the downloads yet???

Hi, Thank you for wonderful addon! i liked it and so far dont have any problem:)

2 Feb 2011, 2:13 AM
#400
zfw88788301 avatar

zfw88788301

New Zenner

Join Date:
Dec 2010
Posts:
28
Plugin Contributions:
0

Re: Footer Menu Support Thread

clydejones:

You can make the following changes to the stylesheet_footer_menu.css

#navSuppWrapper dl {margin: 0 0 3px 0;padding:0;clear:both;height:79px;width:100%;}/Adjust the height and width of the menu/
#navSuppWrapper dt {margin-bottom:.3em;font-weight:bold;}
#navSuppWrapper dd {margin:0;padding:0;float:left;width:24.3%;}/Column width of the menu - currently set for 4 columns/
#navSuppWrapper ul {margin:0;padding:0;list-style: none;}
#navSuppWrapper li {margin:0;padding:0;}
#navSuppWrapper li a:link {letter-spacing:.1em;color:#444;margin:0;padding-left:2em;padding-bottom:.3em;font-size:.9em;display:block;}
#navSuppWrapper li a:visited {letter-spacing:.1em;color:#444;margin:0;padding-left:2em;padding-bottom:.3em;display:block;}
#navSuppWrapper li a:hover {letter-spacing:.1em;color:#444;margin:0;padding-left:2em;padding-bottom:.3em;display:block;}
#navSuppWrapper li a:active {letter-spacing:.1em;color: #444;margin:0;padding-left:2em;padding-bottom:.3em;display:block;}

:clap:Thank you clyde for your helping fix my CSS layout! My website is now going well!:bigups: