Page 211 of 305 FirstFirst ... 111161201209210211212213221261 ... LastLast
Results 2,101 to 2,110 of 3042
  1. #2101
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: link removal and dropdown alignment

    Quote Originally Posted by cartguin View Post
    See attached image.*

    Removing one checkout link, keeping the other
    I'd like to remove the checkout link in the blue circle but keep the other checkout link in the dropdown. Has anybody tried this? I'm hoping someone else has already done the legwork on removing it (or another link from that row: home, login, my account, shopping cart and/or checkout.

    Dropdown submenu alignment
    See the dropdown edge circled in green. Has anybody successfully gotten their dropdowns and submenus to lineup properly when the initial view of the dropdown is all white?

    *Is it possible to embed images uploaded to zen-cart.com?
    A link would be more helpful. Is the Checkout link from the css drop menu? If so, you'd remove that from includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php.

    Though, It doesn't look like my template, looks like you added that link to includes/templates/common/tpl_header.php.

  2. #2102
    Join Date
    Aug 2006
    Posts
    133
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Thank you, it was tpl_header.php.



    Man, was I tired that evening. I meant to circle the "shopping cart" links. Anyway, the result and cause is the same. You're right, I added "checkout" to the drop down but forgot to remove "shopping cart" from the header since it was redundant on the surface level, especially with the cart sidebox activated and ordered first.

    Code:
            <!--bof-navigation display-->
            <div id="navMainWrapper" class="clearfix">
              <div id="navMain">
                <div id="navMainLinks">
                  <ul class="back">
                    <li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a></li>
                    <?php if ($_SESSION['customer_id']) { ?>
                    <li><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a></li>
                    <li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a></li>
                    <?php
          } else {
            if (STORE_STATUS == '0') {
    ?>
                    <li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a></li>
                    <?php } } ?>
                    <?php if ($_SESSION['cart']->count_contents() != 0) { ?>
                    <li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a></li>
                    <li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
                    <?php }?>
                  </ul>
                </div>
                <div id="navMainSearch">
                  <?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?>
                </div>
              </div>
            </div>
            <!--eof-navigation display-->

  3. #2103
    Join Date
    Jun 2008
    Location
    Singapore, Australia, America
    Posts
    96
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    I am trying to add new column to the present dropmenu header, when I do so, the column goes down to 2nd row. How can I add more columns and have them spread evenly in one single column?

    I have searched the thread for an hour, but might be searching with the wrong terms altogether. Appreciate your help.


  4. #2104
    Join Date
    Oct 2007
    Posts
    12
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Hi all

    I am a newbie to Zen-Cart and have stumbled across your excellent template - GREAT WORK!

    I have just one question. I am using your template with the left column showing and the centre column. I want to change this on the Home page to just show the centre column only. I have, sort of, achieved this but I have a space left where the left column sideboxes were. What is the best way to remove this space on the left so that the centre column spans the whole width of the page - I'm sure that the stylesheet.css needs tweaking but I do not know what to change.

    Many thanks

  5. #2105
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by saplanet View Post
    I am trying to add new column to the present dropmenu header, when I do so, the column goes down to 2nd row. How can I add more columns and have them spread evenly in one single column?

    I have searched the thread for an hour, but might be searching with the wrong terms altogether. Appreciate your help.
    Open up includes/templates/apple_zen/css/stylesheet_header_menu.css and adjust these two percentages:

    Code:
    	width:16.667%;
    	*width:16.649%;
    That is currently 100 divided by 6 (6 menu items), so you need to make it divided by 7 (approx 14.285). Make the second number with the asterisk a little smaller, as that one is for IE and needs to be just a smidge smaller.

  6. #2106
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by kirkzeus View Post
    Hi all

    I am a newbie to Zen-Cart and have stumbled across your excellent template - GREAT WORK!

    I have just one question. I am using your template with the left column showing and the centre column. I want to change this on the Home page to just show the centre column only. I have, sort of, achieved this but I have a space left where the left column sideboxes were. What is the best way to remove this space on the left so that the centre column spans the whole width of the page - I'm sure that the stylesheet.css needs tweaking but I do not know what to change.

    Many thanks
    Here is a starting point, if there are issues with this, please reply with a link. Add this to your css:

    #indexHomeBody .centerColumn {
    float:left!important;
    width:95%!important;
    }

    #indexHomeBody .navColumnTwo {display:none;}

  7. #2107
    Join Date
    Oct 2005
    Location
    San Francisco
    Posts
    107
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by jettrue View Post
    Don't use the table, do it with divs.
    That got me 97% of the way there - thanks a bunch. I wish I understood div tags as well as I understand tables, but trial and error seems to be getting me there. I appreciate the help!

  8. #2108
    Join Date
    May 2008
    Posts
    13
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by jettrue View Post
    FIX THAT and your problem will be gone.
    Thank you so much for your patience! For some reason your first explanation did not sink in. I got it fixed, just as you explained. I was hoping that the Category title would be centered at the top as well... I'll poke around to see if I can figure it out, but if you get this and still want to help, it would be geatly appreciated!

    Thank you.

  9. #2109
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by johnga View Post
    That got me 97% of the way there - thanks a bunch. I wish I understood div tags as well as I understand tables, but trial and error seems to be getting me there. I appreciate the help!
    if you need help with it, feel free to post a link!

  10. #2110
    Join Date
    Oct 2007
    Posts
    12
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by jettrue View Post
    Here is a starting point, if there are issues with this, please reply with a link. Add this to your css:

    #indexHomeBody .centerColumn {
    float:left!important;
    width:95%!important;
    }

    #indexHomeBody .navColumnTwo {display:none;}
    It worked a treat! Many thanks!

 

 

Similar Threads

  1. Zen Lightbox addon [Support Thread]
    By Alex Clarke in forum All Other Contributions/Addons
    Replies: 3725
    Last Post: 20 Feb 2025, 05:46 PM
  2. Cherry Zen Template Support Thread
    By jettrue in forum Addon Templates
    Replies: 3250
    Last Post: 13 Nov 2017, 08:02 PM
  3. v151 Zen Magnific Support Thread
    By mutinyzoo in forum All Other Contributions/Addons
    Replies: 79
    Last Post: 14 Sep 2015, 04:39 AM
  4. Simple Zen Template - Support Thread
    By jettrue in forum Addon Templates
    Replies: 461
    Last Post: 27 Apr 2013, 01:33 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