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

Footer Menu Support Thread

Views: 81,573

Results 161 to 180 of 535
13 Mar 2010, 7:13 AM
#161
clydejones avatar

clydejones

Deceased

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

Footer Menu Support Thread

integrity_designs:

Is there any way of moving the footer menu below the copyright etc?
Kind Regards

sure, open includes/templates/YOUR_TEMPLATE/common/tpl_footer.php

find the following:

<div id="footer">

<!--bof-navigation display -->
<div id="navSuppWrapper">
<!--BOF footer menu display-->
<?php require($template->get_template_dir('tpl_footer_menu.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_footer_menu.php');?>
<!--EOF footer menu display-->
</div>
<!--eof-navigation display -->
<!--bof- site copyright display -->
<div id="siteinfoLegal" class="legalCopyright"><?php echo FOOTER_TEXT_BODY; ?></div>
<!--eof- site copyright display -->

and replace with this:

<div id="footer">
<!--bof- site copyright display -->
<div id="siteinfoLegal" class="legalCopyright"><?php echo FOOTER_TEXT_BODY; ?></div>
<!--eof- site copyright display -->
<!--bof-navigation display -->
<div id="navSuppWrapper">
<!--BOF footer menu display-->
<?php require($template->get_template_dir('tpl_footer_menu.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_footer_menu.php');?>
<!--EOF footer menu display-->
</div>
<!--eof-navigation display -->
13 Mar 2010, 7:57 AM
#162
integrity_designs avatar

integrity_designs

Zen Follower

Join Date:
Nov 2009
Location:
North Bendigo, VIC, Australia
Posts:
157
Plugin Contributions:
0

Re: Footer Menu Support Thread

Thanks heaps Clyde
Your a legend :clap:

Kind Regards

18 Mar 2010, 9:23 PM
#163
parisbubbler avatar

parisbubbler

New Zenner

Join Date:
Dec 2009
Posts:
37
Plugin Contributions:
0

Re: Footer Menu Support Thread

I've created a contact information title, but I'm unable to get it to display aligned as if it were a link. :frusty:https://www.etondiffusion.fr/librairie

Any suggestions would be greatly appreciated!!

Thank you.

18 Mar 2010, 10:35 PM
#164
clydejones avatar

clydejones

Deceased

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

Re: Footer Menu Support Thread

parisbubbler:

I've created a contact information title, but I'm unable to get it to display aligned as if it were a link. :frusty:https://www.etondiffusion.fr/librairie

Any suggestions would be greatly appreciated!!

Thank you.

each line of the address section should be withing <li> </li> tags and not spaced with <br />

19 Mar 2010, 9:45 AM
#165
parisbubbler avatar

parisbubbler

New Zenner

Join Date:
Dec 2009
Posts:
37
Plugin Contributions:
0

Re: Footer Menu Support Thread

clydejones:

each line of the address section should be withing <li> </li> tags and not spaced with <br />

Thank you for the info, that worked perfectly:clap:

I've got one more question. How do I create a slightly bigger spacing between the Menu Titles and the links. I find the links are to close to the botttom of the Menu Titles
Check it out

19 Mar 2010, 12:05 PM
#166
clydejones avatar

clydejones

Deceased

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

Re: Footer Menu Support Thread

parisbubbler:

Thank you for the info, that worked perfectly:clap:

I've got one more question. How do I create a slightly bigger spacing between the Menu Titles and the links. I find the links are to close to the botttom of the Menu Titles
Check it out

adjust the padding for the li elements in the stylesheet_footer_menu.css

19 Mar 2010, 6:58 PM
#167
parisbubbler avatar

parisbubbler

New Zenner

Join Date:
Dec 2009
Posts:
37
Plugin Contributions:
0

Re: Footer Menu Support Thread

clydejones:

adjust the padding for the li elements in the stylesheet_footer_menu.css

Thank you for your reply, but I didn't mean spacing out the links. What I want to do was have a little larger spacing between the actual menu title e.g. 'Quick Links' and the links themselves. Like maybe 5px. Is that possible? I've tried playing with the style sheet but can't seem to get any result. Any advice would be greatly appreciated
Posted via Mobile Device

19 Mar 2010, 7:14 PM
#168
clydejones avatar

clydejones

Deceased

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

Re: Footer Menu Support Thread

parisbubbler:

Thank you for your reply, but I didn't mean spacing out the links. What I want to do was have a little larger spacing between the actual menu title e.g. 'Quick Links' and the links themselves. Like maybe 5px. Is that possible? I've tried playing with the style sheet but can't seem to get any result. Any advice would be greatly appreciated
Posted via Mobile Device

adjust the padding in the following declaration (stylesheet_footer_menu.css)
.menuTitle {
padding:0 0 15px 0.3em;
text-align:center;
font-size:1.1em;
color: #ff0;
margin-top: 0;
margin-right: 0;
margin-bottom: 5px;
margin-left: 0;
}

19 Mar 2010, 8:42 PM
#169
parisbubbler avatar

parisbubbler

New Zenner

Join Date:
Dec 2009
Posts:
37
Plugin Contributions:
0

Re: Footer Menu Support Thread

clydejones:

adjust the padding in the following declaration (stylesheet_footer_menu.css)
.menuTitle {
padding:0 0 15px 0.3em;
text-align:center;
font-size:1.1em;
color: #ff0;
margin-top: 0;
margin-right: 0;
margin-bottom: 5px;
margin-left: 0;
}

Clyde, once again thank you for your help, but that modification just don't seem to want to work. I'll just have to live it as is.

Best wishes

20 Mar 2010, 12:00 AM
#170
gee38l avatar

gee38l

Zen Follower

Join Date:
Jul 2008
Posts:
362
Plugin Contributions:
0

Re: Footer Menu Support Thread

Fantastic Mod exactly what i was looking for....

Just one question is it possible to add another column with the title "Products" and link to 5 or 6 of my main product categories?

20 Mar 2010, 1:37 AM
#171
clydejones avatar

clydejones

Deceased

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

Re: Footer Menu Support Thread

gee38l:

Fantastic Mod exactly what i was looking for....

Just one question is it possible to add another column with the title "Products" and link to 5 or 6 of my main product categories?

All the menu definitions are found in the footer_menu_defines.php

You can edit and/or add what you need.

20 Mar 2010, 2:22 AM
#172
gee38l avatar

gee38l

Zen Follower

Join Date:
Jul 2008
Posts:
362
Plugin Contributions:
0

Re: Footer Menu Support Thread

clydejones:

All the menu definitions are found in the footer_menu_defines.php

You can edit and/or add what you need.

Define('CONTACT','<li><a href="' . zen_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a></li>');

Just say i want to add a category currently i have simple seo installed so my links look like this:

/under-sink-systems-c-11

How would i add this to the footer menu?

20 Mar 2010, 2:37 AM
#173
clydejones avatar

clydejones

Deceased

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

Re: Footer Menu Support Thread

gee38l:

Define('CONTACT','<li><a href="' . zen_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a></li>');

> 
> Just say i want to add a category currently i have simple seo installed so my links look like this:
> 
> /under-sink-systems-c-11
> 
> How would i add this to the footer menu?

I'd use the url from your browser address bar
20 Mar 2010, 3:24 AM
#174
gee38l avatar

gee38l

Zen Follower

Join Date:
Jul 2008
Posts:
362
Plugin Contributions:
0

Re: Footer Menu Support Thread

clydejones:

I'd use the url from your browser address bar

So if my url was http://www.truwater.com.au/under-sink-systems-c-11

I would i change that to suit the footer menu

Sorry i am still trying to learn php

20 Mar 2010, 4:05 AM
#175
clydejones avatar

clydejones

Deceased

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

Re: Footer Menu Support Thread

gee38l:

So if my url was http://www.truwater.com.au/under-sink-systems-c-11

I would i change that to suit the footer menu

Sorry i am still trying to learn php

Define('CONTACT','<li><a href="http://www.truwater.com.au/under-sink-systems-c-11">YOUR_CATEGORY_NAME</a></li>');

20 Mar 2010, 5:12 AM
#176
gee38l avatar

gee38l

Zen Follower

Join Date:
Jul 2008
Posts:
362
Plugin Contributions:
0

Re: Footer Menu Support Thread

clydejones:

Define('CONTACT','<li><a href="http://www.truwater.com.au/under-sink-systems-c-11">YOUR_CATEGORY_NAME</a></li>');

/*OF Menu Column 2 link Definitions*/
Define('TITLE_FIVE', '<li class="menuTitle">Products</li>');
Define('CONTACT','<li><a href="http://www.truwater.com.au/under-sink-systems-c-11">UNDER_SINK_SYSTEMS</a></li>');
Define('CONTACT','<li><a href="http://www.truwater.com.au/countertop-systems-c-10">COUNTERTOP_SYSTEMS</a></li>');
Define('CONTACT','<li><a href="http://www.truwater.com.au/replacement-filters-media-c-15">REPLACEMENT_FILTERS</a></li>');
/*EOF Menu Column 2 link Definitions*/

I just added that code to the file just after the column 1 code but cant seem to get it to show what am i doing wrong?

20 Mar 2010, 2:53 PM
#177
clydejones avatar

clydejones

Deceased

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

Re: Footer Menu Support Thread

gee38l:

/OF Menu Column 2 link Definitions/
Define('TITLE_FIVE', '<li class="menuTitle">Products</li>');
Define('CONTACT','<li><a href="http://www.truwater.com.au/under-sink-systems-c-11">UNDER_SINK_SYSTEMS</a></li>');
Define('CONTACT','<li><a href="http://www.truwater.com.au/countertop-systems-c-10">COUNTERTOP_SYSTEMS</a></li>');
Define('CONTACT','<li><a href="http://www.truwater.com.au/replacement-filters-media-c-15">REPLACEMENT_FILTERS</a></li>');
/EOF Menu Column 2 link Definitions/

> 
> I just added that code to the file just after the column 1 code but cant seem to get it to show what am i doing wrong?

Because you need to define the actual menu:

/*BOF Footer Menu Definitions*/
Define('QUICKLINKS', '<dd class="first">
<ul>' . TITLE_ONE . HOME . FEATURED . SPECIALS . NEWPRODUCTS . 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('IMPORTANT', '<dd><ul>' . TITLE_FOUR);
Define('IMPORTANT_END', '</ul></dd>');
/*EOF Footer Menu Definitions*/
20 Mar 2010, 11:11 PM
#178
gee38l avatar

gee38l

Zen Follower

Join Date:
Jul 2008
Posts:
362
Plugin Contributions:
0

Re: Footer Menu Support Thread

clydejones:

Because you need to define the actual menu:

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

<ul>' . TITLE_ONE . HOME . FEATURED . SPECIALS . NEWPRODUCTS . 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('IMPORTANT', '<dd><ul>' . TITLE_FOUR); Define('IMPORTANT_END', '</ul></dd>'); /*EOF Footer Menu Definitions*/

This is what i have at the moment:

/*OF Menu Column 5 link Definitions*/
Define('TITLE_FIVE', '<li class="menuTitle">Products</li>');
Define('UNDER','<li><a href="http://www.truwater.com.au/under-sink-systems-c-11">UNDER_SINK_SYSTEMS</a></li>');
Define('COUNTER','<li><a href="http://www.truwater.com.au/countertop-systems-c-10">COUNTERTOP_SYSTEMS</a></li>');
Define('REPLACEMENT','<li><a href="http://www.truwater.com.au/replacement-filters-media-c-15">REPLACEMENT_FILTERS</a></li>');
/*EOF Menu Column 5 link Definitions*/

And

/*BOF Footer Menu Definitions*/
Define('QUICKLINKS', '<dd class="first">
<ul>' . TITLE_ONE . HOME . FEATURED . SPECIALS . NEWPRODUCTS . ALLPRODUCTS . '</ul></dd>');
[B]Define('PRODUCTS', '<dd class="fifth">
<ul>' . TITLE_FIVE . UNDER . COUNTER . REPLACEMENT . '</ul></dd>');[/B]
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('IMPORTANT', '<dd><ul>' . TITLE_FOUR);
Define('IMPORTANT_END', '</ul></dd>');
/*EOF Footer Menu Definitions*/

Still doesnt work am i doing something wrong?

20 Mar 2010, 11:18 PM
#179
clydejones avatar

clydejones

Deceased

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

Re: Footer Menu Support Thread

Make sure it is being displayed in:

includes/templates/YOUR_TEMPLATE/common/tpl_footer_menu.php

21 Mar 2010, 1:17 AM
#180
gee38l avatar

gee38l

Zen Follower

Join Date:
Jul 2008
Posts:
362
Plugin Contributions:
0

Re: Footer Menu Support Thread

clydejones:

Make sure it is being displayed in:

includes/templates/YOUR_TEMPLATE/common/tpl_footer_menu.php

Thanks for the replay i have finally got it to show but it looks like this:

    * Products
    * UNDER_SINK_SYSTEMS
    * COUNTERTOP_SYSTEMS
    * REPLACEMENT_FILTERS

Also how do it get them all to be on the same line with the dotted lines?