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

Footer Menu Support Thread

Views: 81,606

Results 301 to 320 of 535
15 Nov 2010, 9:00 PM
#301
frank18 avatar

frank18

Deceased

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

Footer Menu Support Thread

clydejones:

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.

Thanks Clyde, obviously no merging necessary.

24 Nov 2010, 8:42 AM
#302
frank18 avatar

frank18

Deceased

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

Re: Footer Menu Support Thread

frank18:

Thanks Clyde, obviously no merging necessary.

Yes, the address block needed merging - all fixed though :smile:

Installed this mod in a cold_steel template. Footer looks fine.

When viewing some of the EZ-pages the TOC listing now shows CURRENT_PAGE_INDICATOR respectively NOT_CURRENT_PAGE_INDICATOR on a separate line with the corresponding link.

Example **here**.

I have played with #navEZPagesTOC in stylesheet.css to fix this but to no avail.

Any ideas please?

Thanks

24 Nov 2010, 3:06 PM
#303
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:

When viewing some of the EZ-pages the TOC listing now shows CURRENT_PAGE_INDICATOR respectively NOT_CURRENT_PAGE_INDICATOR on a separate line with the corresponding link.

Example **here**.

I have played with #navEZPagesTOC in stylesheet.css to fix this but to no avail.

Any ideas please?

Thanks

This is not a Footer Menu issue.

It appears that you may need to change the width of the TOC box.

24 Nov 2010, 9:13 PM
#304
frank18 avatar

frank18

Deceased

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

Re: Footer Menu Support Thread

clydejones:

This is not a Footer Menu issue.

It appears that you may need to change the width of the TOC box.

After commenting out this line

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

in stylesheet_footer_menu.css the TOC displays perfectly. However, it messes up the footer menu (understandable...). This makes me think that there may be some conflict btw the 2 stylesheets.

Adjusted the width of the TOC box in some variants to no avail.

The TOC displayed perfectly before installing the footer menu

24 Nov 2010, 9:24 PM
#305
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:

After commenting out this line

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

in stylesheet_footer_menu.css the TOC displays perfectly. However, it messes up the footer menu (understandable...). This makes me think that there may be some conflict btw the 2 stylesheets.

Adjusted the width of the TOC box in some variants to no avail.

The TOC displayed perfectly before installing the footer menu

add the following to the bottom of stylesheet.css

#navEZPagesTOC ul li a {
color: #000;
text-decoration: none;
font-weight: bold;
display:inline;
}

24 Nov 2010, 9:34 PM
#306
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Location:
Upstate NY
Posts:
21,876
Plugin Contributions:
8

Re: Footer Menu Support Thread

Many of the rules in the footer menu stylesheet are so generic that they apply to the entire site, and can mess up completely unrelated elements.

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;}

should be more like

#navSuppWrapper ul {margin:0;padding:0;list-style: none;}
#navSuppWrapper li {margin:0;padding:0; }
#navSuppWrapper li a {color:663300;margin:0;padding-left:2em;display:block;}
#navSuppWrapper li a:hover {background:#f6e2dd;}

24 Nov 2010, 9:53 PM
#307
frank18 avatar

frank18

Deceased

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

Re: Footer Menu Support Thread

clydejones:

add the following to the bottom of stylesheet.css

#navEZPagesTOC ul li a {
color: #000;
text-decoration: none;
font-weight: bold;
display:inline;
}

Thanks Clyde, will do tonight after work. Thanks to you Glenn, taken on board.

25 Nov 2010, 9:26 AM
#308
frank18 avatar

frank18

Deceased

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

Re: Footer Menu Support Thread

Ok - in the standard Cold Steel stylesheet.css I added

display:inline;

to

#navEZPagesTOC ul li

and to

#navEZPagesTOC ul li a

That fixed the line issue without affecting the footer menu.

Then in #navEZPagesTOC ul changed

line-height: 0.5em;

to

line-height: 1.5em;

All good now - thanks Clyde.

I guess Glenn's advice in post #306 should be incorporated into the stylesheet_footer_menu.css for future releases.

My stylesheet_footer_menu.css now reads in the appropriate places:

#navSuppWrapper ul {
margin:0;padding:0;list-style: none;
}
#navSuppWrapper li {
margin:0;padding:0;
}
#navSuppWrapper li a {
margin:0;
padding-left:2em;
display:block;
}
#navSuppWrapper li a:hover {
background:#FFBD3B;
}

Thanks again folks - great help.

25 Nov 2010, 10:23 PM
#309
filmlover7 avatar

filmlover7

New Zenner

Join Date:
Nov 2010
Posts:
21
Plugin Contributions:
0

Re: Footer Menu Support Thread

Hello! The concept looks awesome. I have installed your Footer Menu in the basic template that comes with Z C.

Two things:

  1. I do get the footer Menu section, but the links are all in ONE long column.

  2. This is my ignorance... but... How do I customize the LINKS?
    I actually want this Cart to be able to link back to my main site and I thought it would be cool to have the Footer Links relate to pages on my main site.

How can I fix the One Column problem
and
How can I change the Links?
Thank you.
:cool:

25 Nov 2010, 11:40 PM
#310
clydejones avatar

clydejones

Deceased

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

Re: Footer Menu Support Thread

filmlover7:

Hello! The concept looks awesome. I have installed your Footer Menu in the basic template that comes with Z C.

Two things:

  1. I do get the footer Menu section, but the links are all in ONE long column.

  2. This is my ignorance... but... How do I customize the LINKS?
    I actually want this Cart to be able to link back to my main site and I thought it would be cool to have the Footer Links relate to pages on my main site.

How can I fix the One Column problem
and
How can I change the Links?
Thank you.
:cool:

Make sure you have installed ALL of 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

Make sure you rename the YOUR_TEMPLATE folder(s) to match the name of the template you are using.

you can change the links by editing footer_menu_defines.php

25 Nov 2010, 11:45 PM
#311
clydejones avatar

clydejones

Deceased

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

Re: Footer Menu Support Thread

For those experiencing problems with the footer menu css, you can replace the current stylesheet with the one contained in the attached zip file.

This fix will be included in the next update of the mod.

Attachment #8460

26 Nov 2010, 12:38 AM
#312
filmlover7 avatar

filmlover7

New Zenner

Join Date:
Nov 2010
Posts:
21
Plugin Contributions:
0

Re: Footer Menu Support Thread

Hi Clyde,
I put the new css in the css folder as instructed, but there is still no column action.

Other thoughts?
Thanks for your efforts on this by the way. It is really worth while... and I am sure it will work! Just a few adjustments.
I will check to be sure I have all your files in the correct places, but I think I have done that already.

Yes, I have triple check. They are all there in the right places and I have put in the new css file.
No change.

26 Nov 2010, 1:28 AM
#313
clydejones avatar

clydejones

Deceased

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

Re: Footer Menu Support Thread

filmlover7:

Hi Clyde,
I put the new css in the css folder as instructed, but there is still no column action.

Other thoughts?
Thanks for your efforts on this by the way. It is really worth while... and I am sure it will work! Just a few adjustments.
I will check to be sure I have all your files in the correct places, but I think I have done that already.

Yes, I have triple check. They are all there in the right places and I have put in the new css file.
No change.

link to your site would be useful

26 Nov 2010, 3:51 AM
#315
clydejones avatar

clydejones

Deceased

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

Re: Footer Menu Support Thread

filmlover7:

Here you go.

http://ashtonwines.com/shop/

For some reason the footer menu stylesheet is not being loaded on your server.

You may want to check with your hosting company.

26 Nov 2010, 6:04 AM
#316
filmlover7 avatar

filmlover7

New Zenner

Join Date:
Nov 2010
Posts:
21
Plugin Contributions:
0

Re: Footer Menu Support Thread

Actually, I can clearly see the css file on my hosting server. Here it is copied from the .../shop/includes/templates/my-custom-name/css/stylesheet_footer_menu.css directory
:(

#footer {
margin: 0 auto;
text-align: left;
background: url(../images/footer_bg.gif);
width: 960px;
height:112px;
clear:both;
}
#navSuppWrapper {
margin: 10px 5px 10px;
padding: 0;
background:none;
color: #444;
width:100%;
}
#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;}
.menuTitle {margin:0;padding-bottom:.3em;text-align:center;font-size:1.1em;font-weight:bold;}
.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;background: #EAC27C;}

26 Nov 2010, 6:29 AM
#317
clydejones avatar

clydejones

Deceased

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

Re: Footer Menu Support Thread

Something is preventing the stylesheet from rendering

there is a 403 forbidden error being generated.

26 Nov 2010, 7:18 AM
#318
filmlover7 avatar

filmlover7

New Zenner

Join Date:
Nov 2010
Posts:
21
Plugin Contributions:
0

Re: Footer Menu Support Thread

clydejones:

Something is preventing the stylesheet from rendering

there is a 403 forbidden error being generated.

What would cause this? Another CSS file? that may be preventing the code from taking effect?

Is there some adjustment to your CSS that might help?

26 Nov 2010, 9:26 AM
#319
frank18 avatar

frank18

Deceased

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

Re: Footer Menu Support Thread

clydejones:

For those experiencing problems with the footer menu css, you can replace the current stylesheet with the one contained in the attached zip file.

This fix will be included in the next update of the mod.

Attachment #8460

Thanks for updating the stylesheet Clyde.

26 Nov 2010, 3:47 PM
#320
clydejones avatar

clydejones

Deceased

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

Re: Footer Menu Support Thread

filmlover7:

What would cause this? Another CSS file? that may be preventing the code from taking effect?

Is there some adjustment to your CSS that might help?

Could be something to do with permissions.
Check with your hosting provider.