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

Footer Menu Support Thread

Views: 81,580

Results 281 to 300 of 535
29 Aug 2010, 5:43 AM
#281
hennie avatar

hennie

New Zenner

Join Date:
Jan 2005
Posts:
18
Plugin Contributions:
0

Footer Menu Support Thread

Dear Clyde

I have a couple of sites that I need to have the footer menu on. I use a template from Template Monster. The menu's, well two I'm testing with from ez-pages is showing up, but the headings does not display correctly. Can you please help.
site: https://www.computers-commerce.com

Hennie

29 Aug 2010, 5:58 AM
#282
clydejones avatar

clydejones

Deceased

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

Re: Footer Menu Support Thread

hennie:

Dear Clyde

I have a couple of sites that I need to have the footer menu on. I use a template from Template Monster. The menu's, well two I'm testing with from ez-pages is showing up, but the headings does not display correctly. Can you please help.
site: https://www.computers-commerce.com

Hennie

It appears that you are missing some of the language files.

make sure you've changed ALL of the YOUR_TEMPLATE folders to match the name of your custom template and that you've uploaded the following files:

includes/languages/english/extra_definitions/YOUR_TEMPLATE/footer_menu_defines.php
includes/templates/YOUR_TEMPLATE/css/stylesheet_footer_menu.css
includes/templates/YOUR_TEMPLATE/common/tpl_footer_menu.php
includes/templates/YOUR_TEMPLATE/templates/tpl_ezpages_footer_menu.php

30 Aug 2010, 9:25 AM
#283
hennie avatar

hennie

New Zenner

Join Date:
Jan 2005
Posts:
18
Plugin Contributions:
0

Re: Footer Menu Support Thread

clydejones:

It appears that you are missing some of the language files.

make sure you've changed ALL of the YOUR_TEMPLATE folders to match the name of your custom template and that you've uploaded the following files:

includes/languages/english/extra_definitions/YOUR_TEMPLATE/footer_menu_defines.php
includes/templates/YOUR_TEMPLATE/css/stylesheet_footer_menu.css
includes/templates/YOUR_TEMPLATE/common/tpl_footer_menu.php
includes/templates/YOUR_TEMPLATE/templates/tpl_ezpages_footer_menu.php

I've copied content from footer_menu_defines.php and paste it into english.php file and seems to show up correctly now. I'll now refine to my liking.

Thanks for your help.

Cheers
Hennie

27 Sep 2010, 8:04 PM
#284
lina0962 avatar

lina0962

Zen Follower

Join Date:
Jun 2006
Posts:
403
Plugin Contributions:
0

Re: Footer Menu Support Thread

I am trying add newsletter subscribe onto the footer menu. I add this code right above the unsubscribe.

Define('SUBSCRIBE', '<li><a href="' . zen_href_link(FILENAME_SUBSCRIBE) . '">' . BOX_INFORMATION_SUBSCRIBE . '</a></li>');

But it doesn't work. It shows a "BOX_INFORMATION_SUBSCRIBE" on the footer menu. How to edit the code?

My site is https://www.best4future.com

Thanks!

27 Sep 2010, 9:09 PM
#285
clydejones avatar

clydejones

Deceased

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

Re: Footer Menu Support Thread

lina0962:

I am trying add newsletter subscribe onto the footer menu. I add this code right above the unsubscribe.

Define('SUBSCRIBE', '<li><a href="' . zen_href_link(FILENAME_SUBSCRIBE) . '">' . BOX_INFORMATION_SUBSCRIBE . '</a></li>');

But it doesn't work. It shows a "BOX_INFORMATION_SUBSCRIBE" on the footer menu. How to edit the code?

My site is https://www.best4future.com

Thanks!

Have you defined this in the language file

includes/languages/YOUR_TEMPLATE/english.php

define('BOX_INFORMATION_SUBSCRIBE', 'Subscribe');

4 Oct 2010, 7:59 PM
#286
lina0962 avatar

lina0962

Zen Follower

Join Date:
Jun 2006
Posts:
403
Plugin Contributions:
0

Re: Footer Menu Support Thread

Hello, Clyde

Thank you for the tip! I got it right!

Another question, I want to show replace the "Quick Links" column with non-link information, such as logo, business address, and phone number.

How to edit the code to make it happen?

By the way, the site is https://www.best4future.com

Lina

4 Oct 2010, 10:16 PM
#287
clydejones avatar

clydejones

Deceased

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

Re: Footer Menu Support Thread

lina0962:

Hello, Clyde

Thank you for the tip! I got it right!

Another question, I want to show replace the "Quick Links" column with non-link information, such as logo, business address, and phone number.

How to edit the code to make it happen?

By the way, the site is https://www.best4future.com

Lina

open includes/languages/english/extra_definitions/YOUR_TEMPLATE/footer_menu_deines.php

find the following section(s) of code and re-write as indicated

/BOF Menu Column 1 link Definitions/
Define('TITLE_ONE', '<li class="menuTitle">Quick Links</li>');
Define('ADDRESS', '<li>nl2br(STORE_NAME_ADDRESS)</li>');
/EOF Menu Column 1 link Definitions/

Define('QUICKLINKS', '<dd class="first">

<ul>' . TITLE_ONE . ADDRESS . '</ul></dd>');
19 Oct 2010, 11:02 AM
#288
mayleine avatar

mayleine

New Zenner

Join Date:
Oct 2010
Posts:
25
Plugin Contributions:
0

Re: Footer Menu Support Thread

clyde, i have a question about my right navs please.

i was trying to make all the footer links align to the center and I really like the result and it's just perfect (thank you!) but it messed up my right navs (quick reorder, bestsellers). the list are aligned in the center too! how do i retain the center alignment in the footer but make all the lists in the sideboxes align left? thanks!

thanks for your mod! very nice!
if you can please take a quick look at my site:
https://www.streetstylejunkie.com

19 Oct 2010, 2:25 PM
#289
clydejones avatar

clydejones

Deceased

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

Re: Footer Menu Support Thread

mayleine:

clyde, i have a question about my right navs please.

i was trying to make all the footer links align to the center and I really like the result and it's just perfect (thank you!) but it messed up my right navs (quick reorder, bestsellers). the list are aligned in the center too! how do i retain the center alignment in the footer but make all the lists in the sideboxes align left? thanks!

thanks for your mod! very nice!
if you can please take a quick look at my site:
https://www.streetstylejunkie.com

I'm not familiar with the template you are using on your site so I'd be guessing, but It appears that some of the settings in the footer_menu.css (in particular the <ul><li> declarations) may be affecting some of those specified in the stylesheet.css.

You might want check with the template designer.

6 Nov 2010, 4:42 PM
#290
tcjay avatar

tcjay

Zen Follower

Join Date:
Jul 2010
Location:
Boston
Posts:
139
Plugin Contributions:
0

Re: Footer Menu Support Thread

I am trying to change the color of the links in the footer menu to 663300. Right now the links are silver. I have read through the thread and tried everything and I just can't seem to figure out how to do it. Right now this is the footer_menu.css

#footer {clear:both;margin:0;
}
#navSuppWrapper {
border:1px solid #ccc;
margin: 10px 0px 0;
padding: 0;
background:none;
font-weight: bold;
color: #000;
}
dl {margin: 30px 0 3px 0;padding:0;clear:both;height:79px;width:100%;
}/Adjust the height and width of the menu/
dt {margin-bottom:.3em;font-weight:bold;}
dd {margin:0;padding:0;float:left;width:24.3%;background-color:#f6e2dd;}/Column width of the menu - currently set for 4 columns/
ul {margin:0;padding:0;list-style: none;}

li {margin:0;padding:0; }
li a {color:663300;margin:0;padding-left:2em;display:block;}
li a:hover {background:#f6e2dd;}
.menuTitle {margin:0;padding-bottom:.3em;text-align:center;font-size:1.1em;}
.first, .second, .third {border-right:1px dotted #000;}
#siteinfoLegal {
margin:0 auto;
padding: .5em 0 0;
font-size: 0.9em;
text-align:center;
width:100%;
line-height:normal;
clear:both;
}
#siteinfoLegal a {padding: 0 0.5em 0 0.5em;color: #000;font-weight:bold;white-space: nowrap; }
#siteinfoLegal a:hover {color: #000;}

This is the website.

TIA TOM :cool:

6 Nov 2010, 5:03 PM
#291
clydejones avatar

clydejones

Deceased

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

Re: Footer Menu Support Thread

tcjay:

I am trying to change the color of the links in the footer menu to 663300. Right now the links are silver. I have read through the thread and tried everything and I just can't seem to figure out how to do it. Right now this is the footer_menu.css

#footer {clear:both;margin:0;
}
#navSuppWrapper {
border:1px solid #ccc;
margin: 10px 0px 0;
padding: 0;
background:none;
font-weight: bold;
color: #000;
}
dl {margin: 30px 0 3px 0;padding:0;clear:both;height:79px;width:100%;
}/Adjust the height and width of the menu/
dt {margin-bottom:.3em;font-weight:bold;}
dd {margin:0;padding:0;float:left;width:24.3%;background-color:#f6e2dd;}/Column width of the menu - currently set for 4 columns/
ul {margin:0;padding:0;list-style: none;}

li {margin:0;padding:0; }
li a {color:663300;margin:0;padding-left:2em;display:block;}
li a:hover {background:#f6e2dd;}
.menuTitle {margin:0;padding-bottom:.3em;text-align:center;font-size:1.1em;}
.first, .second, .third {border-right:1px dotted #000;}
#siteinfoLegal {
margin:0 auto;
padding: .5em 0 0;
font-size: 0.9em;
text-align:center;
width:100%;
line-height:normal;
clear:both;
}
#siteinfoLegal a {padding: 0 0.5em 0 0.5em;color: #000;font-weight:bold;white-space: nowrap; }
#siteinfoLegal a:hover {color: #000;}

This is the website.

TIA TOM :cool:

You need to change this as indicated by the highlight:

li a {color:#663300;margin:0;padding-left:2em;display:block;}

6 Nov 2010, 6:31 PM
#292
tcjay avatar

tcjay

Zen Follower

Join Date:
Jul 2010
Location:
Boston
Posts:
139
Plugin Contributions:
0

Re: Footer Menu Support Thread

I have made the change but it the color has not changed.

6 Nov 2010, 8:36 PM
#293
clydejones avatar

clydejones

Deceased

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

Re: Footer Menu Support Thread

tcjay:

I have made the change but it the color has not changed.

open includes/templates/YOUR_TEMPLATE/css/stylesheet.css

find the following and make the highlighted change

#navSupp ul li a {
text-decoration: none;
padding: 0em 0.5em;
margin: 0;
color: #663300;
white-space: nowrap;
}

7 Nov 2010, 11:04 AM
#294
tcjay avatar

tcjay

Zen Follower

Join Date:
Jul 2010
Location:
Boston
Posts:
139
Plugin Contributions:
0

Re: Footer Menu Support Thread

Thank you for your help. Jackpot. It works.!:clap:

7 Nov 2010, 12:43 PM
#295
tcjay avatar

tcjay

Zen Follower

Join Date:
Jul 2010
Location:
Boston
Posts:
139
Plugin Contributions:
0

Re: Footer Menu Support Thread

I think I am almost there. I put all of the code fro the footer into one css file so Icould keep track of what was going one. One last question.......... How oudl I move the text down. I thought I would add a top margin but I could never figure out where to place it. TIA Tom

7 Nov 2010, 4:01 PM
#296
clydejones avatar

clydejones

Deceased

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

Re: Footer Menu Support Thread

tcjay:

I think I am almost there. I put all of the code fro the footer into one css file so Icould keep track of what was going one. One last question.......... How oudl I move the text down. I thought I would add a top margin but I could never figure out where to place it. TIA Tom

you can adjust the margins in these declarations:

/eof bottom navigation/
dl {margin: 32px 0 3px 0;padding:0;clear:both;height:79px;width:100%;
}/Adjust the height and width of the menu/
dt {margin-bottom:.3em;font-weight:bold;}
dd {margin:0;padding:0;float:left;width:299px;background-color:#f6e2dd;}/Column width of the menu - currently set for 4 columns/
ul {margin:0;padding:0;list-style: none;}
li {margin:0;padding:0; }

14 Nov 2010, 11:32 AM
#297
mayleine avatar

mayleine

New Zenner

Join Date:
Oct 2010
Posts:
25
Plugin Contributions:
0

Re: Footer Menu Support Thread

hello clyde. is there a way we can add pdf files for the 4th column of the footer. something that when clicked would give my customers a pdf file. if so, how do we edit the footer file? thanks!

14 Nov 2010, 4:15 PM
#298
clydejones avatar

clydejones

Deceased

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

Re: Footer Menu Support Thread

mayleine:

hello clyde. is there a way we can add pdf files for the 4th column of the footer. something that when clicked would give my customers a pdf file. if so, how do we edit the footer file? thanks!

column 4 uses ez-pages.

I would suppose that you could create links to your pdf files using ez-pages.

15 Nov 2010, 1:13 PM
#299
frank18 avatar

frank18

Deceased

Join Date:
Nov 2007
Location:
Sunny Coast, Australia
Posts:
3,427
Plugin Contributions:
2

Re: Footer Menu Support Thread

G'day Clyde

I am considering to incorporate your footer menu into a Cold Steel template but having difficulties merging an unmodified includes/templates/cold_steel/common/tpl_footer.php file with the tpl_footer.php file contained in the Footer Menu mod.

Seeing you are the author of both mods I'd like to put my house on it that you have a ready made merged file handy.

Any chance posting this merged file?

Thanks

15 Nov 2010, 3:17 PM
#300
clydejones avatar

clydejones

Deceased

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

Re: Footer Menu Support Thread

frank18:

G'day Clyde

I am considering to incorporate your footer menu into a Cold Steel template but having difficulties merging an unmodified includes/templates/cold_steel/common/tpl_footer.php file with the tpl_footer.php file contained in the Footer Menu mod.

Seeing you are the author of both mods I'd like to put my house on it that you have a ready made merged file handy.

Any chance posting this merged file?

Thanks

Just replace the tpl_footer.php file that comes with the cold steel template

with the

tpl_footer.php file from the footer menu mod.