Page 20 of 47 FirstFirst ... 10181920212230 ... LastLast
Results 191 to 200 of 462
  1. #191
    Join Date
    Mar 2007
    Posts
    21
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    Quote Originally Posted by jettrue View Post
    Hi@

    For the chopped off issue, see post 176 in this thread:
    http://www.zen-cart.com/forum/showpo...&postcount=176

    You can changed the font and spacing for the bottom footer links with this css tag:
    #navCatTabs ul li a, #navSupp ul li a {
    text-decoration: none;
    padding: 0em 0.9em;
    margin: 0;
    color: #666;
    white-space: nowrap;
    }
    Thanks very much.

    Blumcafe

  2. #192
    Join Date
    Mar 2007
    Posts
    21
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    Quote Originally Posted by RKB View Post
    The clipped header issue in IE... change the line height in the section below to 1.5em:

    #navMain ul (line 290)

    {

    padding-top: 0.7em;

    list-style-type: none;

    text-align: center;

    line-height: 1em;

    }

    Ron
    Thanks again. One more question. When someone adds item to cart, the buttons that show up at top that say next prev listing...........how do I move those to the bottom. how do I move the add to cart button on the shopping cart page next to the product rather than below it and how do I move the product attribute from the below the add to cart button to right below the product listing. I have attached a pix to show what I am talking about.
    Attached Images Attached Images  

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

    Default Re: Simple Zen Template - available in download section

    Quote Originally Posted by blumcafe View Post
    Thanks again. One more question. When someone adds item to cart, the buttons that show up at top that say next prev listing...........how do I move those to the bottom. how do I move the add to cart button on the shopping cart page next to the product rather than below it and how do I move the product attribute from the below the add to cart button to right below the product listing. I have attached a pix to show what I am talking about.
    That's three questions.

    1. That's done in the admin, under "Configuration", then "Product Info", then "Previous Next - Navigation Bar Position"

    2. if you open up includes/templates/YOUR_TEMPLATE/templates/tpl_product_info_display.php and remove the <br class="clearBoth"> right before:
    <!--bof Add to Cart Box -->

    That will move the add to cart box a good deal up.

    Also, in the css, if you reduce the margin on the #cartAdd section a bit, you'll get it even higher, and if you change the float:right to float:left, the cart will move over to right underneath the description.

    3.I would open up includes/templates/YOUR_TEMPLATE/templates/tpl_product_info_display.php and move the attributes chunk up above the add to cart chunk. They should be kind of "roped off" if you will by code like this:
    <!--bof Attributes Module -->

    so move everything from <!--bof Attributes Module --> to <!--eof Attributes Module --> above <!--bof Add to Cart Box -->

  4. #194
    Join Date
    Feb 2007
    Location
    Canada
    Posts
    83
    Plugin Contributions
    0

    help question Re: Simple Zen Template - available in download section

    I have also been trying to re-arrange the ADD A CART button exactly as was asked above (by Blumcafe) to BELOW the attributes rather than above them...I followed instructions given but cannot seem to locate any php file called "tpl_product_info_display.php" AT ALL...any ideas where else it might or what I am missing now??

    Thanks,
    Moy

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

    Default Re: Simple Zen Template - available in download section

    Quote Originally Posted by BDCreations View Post
    I have also been trying to re-arrange the ADD A CART button exactly as was asked above (by Blumcafe) to BELOW the attributes rather than above them...I followed instructions given but cannot seem to locate any php file called "tpl_product_info_display.php" AT ALL...any ideas where else it might or what I am missing now??

    Thanks,
    Moy
    It won't be in the simple_zen folder, because it hasn't been included in my template, but if you go to includes/templates/template_default/templates/ it will be there. Move it to the includes/templates/YOUR_TEMPLATE/templates folder, make the changes, then upload it.

  6. #196
    Join Date
    Mar 2007
    Posts
    21
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    Quote Originally Posted by jettrue View Post
    That's three questions.

    1. That's done in the admin, under "Configuration", then "Product Info", then "Previous Next - Navigation Bar Position"

    2. if you open up includes/templates/YOUR_TEMPLATE/templates/tpl_product_info_display.php and remove the <br class="clearBoth"> right before:
    <!--bof Add to Cart Box -->

    That will move the add to cart box a good deal up.

    Also, in the css, if you reduce the margin on the #cartAdd section a bit, you'll get it even higher, and if you change the float:right to float:left, the cart will move over to right underneath the description.

    3.I would open up includes/templates/YOUR_TEMPLATE/templates/tpl_product_info_display.php and move the attributes chunk up above the add to cart chunk. They should be kind of "roped off" if you will by code like this:
    <!--bof Attributes Module -->

    so move everything from <!--bof Attributes Module --> to <!--eof Attributes Module --> above <!--bof Add to Cart Box -->
    Thanks for the info. BTW, I had all intentions of only asking one question, but got carried away. So many things in my head. Thanks though. Next time I promise to stick to my guns.

    BlumCafe

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

    Default Re: Simple Zen Template - available in download section

    Quote Originally Posted by blumcafe View Post
    Thanks for the info. BTW, I had all intentions of only asking one question, but got carried away. So many things in my head. Thanks though. Next time I promise to stick to my guns.

    BlumCafe
    Heh heh, just teasing you. Ask away!

  8. #198
    Join Date
    Feb 2007
    Location
    Canada
    Posts
    83
    Plugin Contributions
    0

    help question Re: Simple Zen Template - available in download section

    Perfect - found it thank you!!!

    Is there any easy way to change how many products are shown at a time in the main listing page? Sounds confusing - I mean rather than having products/info blurb/price shown horizontally across ONE at a time...can it be changed to have say 2, 3 or 4 products shown across and people can click for larger image and info/price...

    I ask only because our product listing is very large in some areas and someone would be scrolling quite awhile to see all items listed in certain categories...

    Thanks AGAIN,
    Moy :)

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

    Default Re: Simple Zen Template - available in download section

    Quote Originally Posted by BDCreations View Post
    Perfect - found it thank you!!!

    Is there any easy way to change how many products are shown at a time in the main listing page? Sounds confusing - I mean rather than having products/info blurb/price shown horizontally across ONE at a time...can it be changed to have say 2, 3 or 4 products shown across and people can click for larger image and info/price...

    I ask only because our product listing is very large in some areas and someone would be scrolling quite awhile to see all items listed in certain categories...

    Thanks AGAIN,
    Moy :)
    Have you tried this in your admin:

    "Configuration", then "Product Listing", then change "Product Listing - Layout Style" to columns.

    You can limit how many products are shown in the product listing under "configuration", "maximum values".

  10. #200
    Join Date
    Nov 2006
    Posts
    512
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    Hi! I wanted to put tiny icons next to my sidebox headings: cart etc...I have done this my adding this to the english file:

    PHP Code:
      define('BOX_HEADING_SHOPPING_CART'' Shopping Cart <img src="images/logos/cart.gif" alt="Cart" />'); 
    is there a better way?

 

 
Page 20 of 47 FirstFirst ... 10181920212230 ... LastLast

Similar Threads

  1. Cherry Zen Template Support Thread
    By jettrue in forum Addon Templates
    Replies: 3250
    Last Post: 13 Nov 2017, 08:02 PM
  2. Fresh Zen -- JellyFish Template Support Thread
    By magicbox in forum Addon Templates
    Replies: 93
    Last Post: 11 Apr 2012, 08:54 AM
  3. Free Template "Future Zen" v1.2 Support Thread
    By kuroi in forum Addon Templates
    Replies: 69
    Last Post: 16 Jul 2010, 06:00 AM
  4. Re: Simple SEO URL [support thread]
    By creamcrackers in forum General Questions
    Replies: 2
    Last Post: 16 Aug 2009, 03:02 PM
  5. [Support Thread] Simple Video Manager
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 1 Nov 2008, 02:44 PM

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