Yes, the address block needed merging - all fixed though
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
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
Last edited by frank18; 24 Nov 2010 at 10:19 PM.
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;}
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.
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.
![]()
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
Bookmarks