Page 47 of 54 FirstFirst ... 374546474849 ... LastLast
Results 461 to 470 of 535
  1. #461
    Join Date
    Sep 2008
    Posts
    219
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by hardwiredtemplates View Post
    Ok little problem I have in the footer links. The about us link is going to a "page not found" It was not even showing about us but I managed to get it there in the english.php file but cannot find where to edit the link. The site is www.megasaveonline.com

    Any help?

    Anyone out there who may have knowledge of this.

    Anyone... (hears crickets chirping)

  2. #462
    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
    Anyone out there who may have knowledge of this.

    Anyone... (hears crickets chirping)
    Have you installed the About Us page add on

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

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by clydejones View Post
    Have you installed the About Us page add on
    After installing the mod... it's all good now

    Thanks Clyde

  4. #464
    Join Date
    Jan 2006
    Posts
    1,542
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Clyde, hi again.

    Trying to install Footer Menu on your zencart_zen template. Test site:

    http://www.prom-mart.com/index.php?main_page=contact_us

    Several issues:

    1. Text in coluns seems mis-aligned, as if trying to align center (not for categories, though). See "Important Links", "Best Sellers", "Information" boxes.

    2. For some reason, Contact Us is missing the red asterisk.

    3. How might I align links in footer to align left rather than center?

    4. Site would probably look a little better with a small margin at bottom, as in zencart_zen on main site as yet without footer menu:

    http://www.prommart.com/index.php?main_page=contact_us

    Cannot bear right now to wade through new thread, so if you have any thoughts specific to your template, thanks.

    SPH

    PS: I did just install the css/js minifer on test site (which does speed it up, although your template does very good out of the box.) Not sure if that affects above issues.

  5. #465
    Join Date
    Jan 2006
    Posts
    1,542
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    http://www.zen-cart.com/forum/showpo...&postcount=311

    Okay, going through thread, above fix seems to have fixed my upper sidebox issues. And also put a small margin at bottom of page. And took out the yellowish/gold hover in links not only in footer but in other places in site.

    Now, have I yet come across how some have their links left aligned rather than center aligned?

    Just noticed: still have missing red asterisks Contact Us:
    http://www.prom-mart.com/index.php?main_page=contact_us
    Last edited by SPH; 19 Jul 2011 at 07:26 AM.

  6. #466
    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 SPH View Post
    http://www.zen-cart.com/forum/showpo...&postcount=311

    Okay, going through thread, above fix seems to have fixed my upper sidebox issues. And also put a small margin at bottom of page. And took out the yellowish/gold hover in links not only in footer but in other places in site.

    Now, have I yet come across how some have their links left aligned rather than center aligned?

    Just noticed: still have missing red asterisks Contact Us:
    http://www.prom-mart.com/index.php?main_page=contact_us
    As for the sideboxes - zencart_zen doesn't modify any of them except for the categories.
    You'll need to look at each of the sidebox templates and determine if they contain a class="centeredContent" element and delete that if you want them to be left aligned.

    I believe there is a fix for the asterisks in the support thread for zencart_zen

  7. #467
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Footer Menu Support Thread

    look at each of the sidebox templates and determine if they contain a class="centeredContent" element and delete that
    Or just add to your stylesheet something like

    #sideboxid .centeredContent {text-align: left;}

    where #sideboxid is the sidebox you want to affect.
    It may work generically with

    .leftBoxContent .centeredContent, .rightBoxContent .centeredContent {text-align: left;}

  8. #468
    Join Date
    Jan 2006
    Posts
    1,542
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by gjh42 View Post
    Or just add to your stylesheet something like

    #sideboxid .centeredContent {text-align: left;}

    where #sideboxid is the sidebox you want to affect.
    It may work generically with

    .leftBoxContent .centeredContent, .rightBoxContent .centeredContent {text-align: left;}
    Thanks. The "fix" corrected my upper side box alignment problem. It was the links in the footer menu that I wanted to align left. The "fix" setting did not do it:

    #footer {
    margin: 0 auto;
    text-align: left;
    background: url(../images/footer_bg.gif);
    width: 960px;
    height:112px;
    clear:both;
    }

  9. #469
    Join Date
    Jan 2006
    Posts
    1,542
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by clydejones View Post
    As for the sideboxes - zencart_zen doesn't modify any of them except for the categories.
    You'll need to look at each of the sidebox templates and determine if they contain a class="centeredContent" element and delete that if you want them to be left aligned.

    I believe there is a fix for the asterisks in the support thread for zencart_zen
    Clyde, your template worked perfectly (red asterisks) before installing the footer menu. As gjh42 (I believe) mentioned earlier, the footer menu has the potential to cause unintended consequences throughout the site. The "fix" corrected my upper side box alignment problem and took out most of the link yellowish/gold hover.

    But the fix still is not playing nicely with zencart_zen template. With a background color, I can see that the color slices through the middle of the copyright line, as if it's not completely in or out of the footer menu. Also, the links with the fix look crunched together.

    I resorted to the original footer style menu css, with a background color, and the background only covers the top of the footer.

    #footer {clear:both;margin:0;}
    #navSuppWrapper {
    margin: 10px 5px 0;
    padding: 0;
    background:#ccc;
    font-weight: bold;
    color: #000;
    }

    Otherwise, the original footer sheet has nicer text, better spacing between links and header titles, than the fix.

    After several years with zencart, constantly getting beat down with mods, I was looking forward to your footer menu playing nicely with your zencartzen template - out of the box. I guess not, and I do suspect it is the template. (Most) everyone else I've looked at has a nice footer menu.

    Steve

  10. #470
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Footer Menu Support Thread

    This is actually controlling the footer links' alignment:

    stylesheet.css (line 426)

    #navSuppWrapper {
    color: #000000;
    font-weight: bold;

    text-align: center;
    }

    Change the center to left and it behaves as desired.

 

 
Page 47 of 54 FirstFirst ... 374546474849 ... LastLast

Similar Threads

  1. 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
  2. v154 Flexible Footer Menu Multilingual [Support Thread]
    By rbarbour in forum All Other Contributions/Addons
    Replies: 128
    Last Post: 6 Sep 2023, 10:30 PM
  3. Hebrew Support - latest release [Support Thread]
    By eranariel in forum Addon Language Packs
    Replies: 19
    Last Post: 23 Jan 2023, 08:04 AM
  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