Page 3 of 54 FirstFirst 123451353 ... LastLast
Results 21 to 30 of 535
  1. #21
    Join Date
    Sep 2008
    Posts
    219
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Thanks for your assistance clye, the footer now is consistent. Reason I asked to change the font family, is because I find the links a little hard to read(a bit too dark and narrow). I thought changing the font-family(since there was no bolding) would make a difference but it does not. I wanted so that its lighter and a little wider (makes it easy on the eyes). This is shown on this footer: http://www.cooltechcentral.com/. and in http://www1.macys.com/

    by the way for the footer in cooltechcentral.com site is there an html code for the small greater then sign symbol before each link or is this only accomplished by an image?
    -----
    Regarding moving the links, I tried the following procedure to move the link titled "Links" into another table entry(similar to what I wanted to do with the Terms of Use)

    ---------- Steps followed to accomplish the above---------------
    In includes/languages/comstock/english.php
    wrote the following declaration: define('BOX_INFORMATION_LINKS', 'Links');

    Then in includes/languages/english/extra_definitions/comstock/footer_menu_defines.php
    wrote the following deceleration:
    Define('LINKS','<li><a href="' . zen_href_link(FILENAME_LINKS) . '">' . BOX_INFORMATION_LINKS . '</a></li>');

    uploaded both files and nothing changed. I am not a programmer but I followed similar procedure to your last post for the "Terms of Use" but this seems to be just a name change, and the DEFINE statements are all there. How can I do this with a brand New undefined Link?

    Many Advanced thanks for all your help Clyde..

  2. #22
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by hardwiredtemplates View Post
    Thanks for your assistance clye, the footer now is consistent. Reason I asked to change the font family, is because I find the links a little hard to read(a bit too dark and narrow). I thought changing the font-family(since there was no bolding) would make a difference but it does not. I wanted so that its lighter and a little wider (makes it easy on the eyes). This is shown on this footer: http://www.cooltechcentral.com/. and in http://www1.macys.com/

    by the way for the footer in cooltechcentral.com site is there an html code for the small greater then sign symbol before each link or is this only accomplished by an image?
    -----
    Regarding moving the links, I tried the following procedure to move the link titled "Links" into another table entry(similar to what I wanted to do with the Terms of Use)

    ---------- Steps followed to accomplish the above---------------
    In includes/languages/comstock/english.php
    wrote the following declaration: define('BOX_INFORMATION_LINKS', 'Links');

    Then in includes/languages/english/extra_definitions/comstock/footer_menu_defines.php
    wrote the following deceleration:
    Define('LINKS','<li><a href="' . zen_href_link(FILENAME_LINKS) . '">' . BOX_INFORMATION_LINKS . '</a></li>');

    uploaded both files and nothing changed. I am not a programmer but I followed similar procedure to your last post for the "Terms of Use" but this seems to be just a name change, and the DEFINE statements are all there. How can I do this with a brand New undefined Link?

    Many Advanced thanks for all your help Clyde..
    Try making these changes in the stylesheet_footer_menu.css

    #navSuppWrapper {
    border:1px solid #ccc;
    margin: 0 auto;
    padding: 0;
    background:none;
    font-weight: 400;
    color: #666;
    width: 1000px;
    height: 116px;
    font-family: verdana,arial,lucida,sans-serif;

    }


    li a:link {letter-spacing:.1em;color: #444;font-size:9px;margin:0;padding-left:1em;padding-bottom:.3em;display:block;}
    li a:visited {letter-spacing:.1em;color: #444;font-size:9px;margin:0;padding-left:1em;padding-bottom:.3em;display:block;}
    li a:hover {letter-spacing:.1em;color:#f27a00;background:none;text-decoration: underline;}
    li a:active {letter-spacing:.1em;color: #444;font-size:9px;margin:0;padding-left:1em;padding-bottom:.3em;display:block;}
    .menuTitle {margin:4px;padding-bottom:.3em;text-align:center;font-size:1.1em;font-weight:bold;}

  3. #23
    Join Date
    Sep 2008
    Posts
    219
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Alright this is getting a little frustrating, so i just made it all Italic and that seems to make it easier to read the links. We'll just leave it like that for now.

    I am still struggling with re-arranging the links. These are the steps I followed in attempt to move the link "Links" under the menu title "Important links" to underneath the menu title "Quick links".

    ---------- Steps followed to accomplish the above---------------
    In includes/languages/comstock/english.php
    wrote the following declaration: define('BOX_INFORMATION_LINKS', 'Links');

    Then in includes/languages/english/extra_definitions/comstock/footer_menu_defines.php
    wrote the following deceleration:
    Define('LINKS','<li><a href="' . zen_href_link(FILENAME_LINKS) . '">' . BOX_INFORMATION_LINKS . '</a></li>');

    What Am i doing Wrong?

  4. #24
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by hardwiredtemplates View Post
    Alright this is getting a little frustrating, so i just made it all Italic and that seems to make it easier to read the links. We'll just leave it like that for now.

    I am still struggling with re-arranging the links. These are the steps I followed in attempt to move the link "Links" under the menu title "Important links" to underneath the menu title "Quick links".

    ---------- Steps followed to accomplish the above---------------
    In includes/languages/comstock/english.php
    wrote the following declaration: define('BOX_INFORMATION_LINKS', 'Links');

    Then in includes/languages/english/extra_definitions/comstock/footer_menu_defines.php
    wrote the following deceleration:
    Define('LINKS','<li><a href="' . zen_href_link(FILENAME_LINKS) . '">' . BOX_INFORMATION_LINKS . '</a></li>');

    What Am i doing Wrong?
    First of all that is an external link created using EZ-pages.

    In order to move it to the quick links column you will need to make the define statement like this. The highlight is the id number for that particular ez-page which you will have to change

    Define('LINKS', '<li><a href="' . zen_ez_pages_link(31) . '"> Links</a></li>');

    You'll then need to add this to the following definition statement

    Define('QUICKLINKS', '<dd class="first">
    <ul>' . TITLE_ONE . HOME . FEATURED . SPECIALS . NEWPRODUCTS . ALLPRODUCTS . LINKS . '</ul></dd>');
    Last edited by clydejones; 31 May 2009 at 11:15 PM.

  5. #25
    Join Date
    Sep 2008
    Posts
    219
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Thanks for all your assistance Clyde. a little tweaking and this menu is an excellent contribution.

  6. #26
    Join Date
    Jul 2007
    Location
    Roseville, Michigan
    Posts
    188
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Clyde,

    Thank you for this module. When I add this module, it removes all of the bullets of my site. I can see that the css has this in it.

    ul {margin:0;padding:0;list-style: none;}

    When I remove this part, it fixes the rest of my site, but messes up the footer. Is there a way to remove the bullets from the footer and not the rest of my site?

  7. #27
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by smoke133 View Post
    Clyde,

    Thank you for this module. When I add this module, it removes all of the bullets of my site. I can see that the css has this in it.

    ul {margin:0;padding:0;list-style: none;}

    When I remove this part, it fixes the rest of my site, but messes up the footer. Is there a way to remove the bullets from the footer and not the rest of my site?
    replace the includes/templates/YOUR_TEMPLATE/css/stylesheet_footer_menu.css

    with the file from the following:

    smoke133_fix.zip

  8. #28
    Join Date
    Jul 2007
    Location
    Roseville, Michigan
    Posts
    188
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Thank you for your help. That worked great.

  9. #29
    Join Date
    Oct 2008
    Posts
    32
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Hi Guys!
    I'm looking for a bit of assistance before I pull my hair out. I installed the module and got it working but in the process I have messed up my header.

    The site is http://www.growlightexpress.com. If you check it out you will see two green bars at the top and the links "on top of each other" instead of "next to" as it was before (and there was only one green bar before the install). I can only guess at something in the css but not really sure. My skills are weak!!!

    Also is there a way to change the "on mouse over" for the links in the footer and header to not be orange but the background color? Again I can only assume something with the css file but don't know how to move form there!!!

    Some other info: I merged my tpl_footer file with the given tpl_footer file since I had changes in mine...I might have missed something there...

    ANY help is appreciated!!!
    -Christopher
    Last edited by growlight; 29 Jul 2009 at 02:04 AM. Reason: added additional info

  10. #30
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by growlight View Post
    Hi Guys!
    I'm looking for a bit of assistance before I pull my hair out. I installed the module and got it working but in the process I have messed up my header.

    The site is http://www.growlightexpress.com. If you check it out you will see two green bars at the top and the links "on top of each other" instead of "next to" as it was before (and there was only one green bar before the install). I can only guess at something in the css but not really sure. My skills are weak!!!

    Also is there a way to change the "on mouse over" for the links in the footer and header to not be orange but the background color? Again I can only assume something with the css file but don't know how to move form there!!!

    Some other info: I merged my tpl_footer file with the given tpl_footer file since I had changes in mine...I might have missed something there...

    ANY help is appreciated!!!
    -Christopher
    Use the fix thats included in POST 27 above - that should take care of the problem.

 

 
Page 3 of 54 FirstFirst 123451353 ... LastLast

Similar Threads

  1. v154 Flexible Footer Menu Multilingual [Support Thread]
    By rbarbour in forum All Other Contributions/Addons
    Replies: 130
    Last Post: 1 Jun 2025, 02:18 PM
  2. Hebrew Support - latest release [Support Thread]
    By eranariel in forum Addon Language Packs
    Replies: 20
    Last Post: 23 Apr 2025, 08:49 AM
  3. Category Tab Simple Dropdown Menu 1.3.9 Support Thread
    By dbltoe in forum All Other Contributions/Addons
    Replies: 46
    Last Post: 30 Mar 2024, 06:12 PM
  4. adding links to top menu and footer menu
    By satrina in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 7 Nov 2012, 10:17 PM
  5. Easy way to edit header/top menu, footer menu, and sidebar menu?
    By templar2 in forum Templates, Stylesheets, Page Layout
    Replies: 8
    Last Post: 30 Jun 2009, 11:14 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR