Page 57 of 68 FirstFirst ... 747555657585967 ... LastLast
Results 561 to 570 of 672
  1. #561
    Join Date
    May 2006
    Posts
    725
    Plugin Contributions
    0

    Default Re: Acadame - Another Professional Template

    Please disregard my post regarding the sideboxes.

    I have one important question though, if possible, how could I make the shopping cart image on the "top bar" be an image link? I want it to link to the cart page.

    Thx

  2. #562
    Join Date
    Nov 2006
    Posts
    22
    Plugin Contributions
    0

    Default Re: Acadame - Another Professional Template

    Quote Originally Posted by Berserker View Post
    Please disregard my post regarding the sideboxes.

    I have one important question though, if possible, how could I make the shopping cart image on the "top bar" be an image link? I want it to link to the cart page.

    Thx
    not sure how to link the actual image, but you can link the items/dollar amount line. post is http://www.zen-cart.com/forum/showpo...&postcount=513. basically, you are adding the following line of code:

    <a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>">

    so, it would look like this:

    <div id="cart_header" class="topBox">Shopping Cart<br /><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><? echo $_SESSION['cart']->count_contents();?> item(s) - <? echo $currencies->format($_SESSION['cart']->show_total());?></a></div>

    instead of this:

    <div id="cart_header" class="topBox">Shopping Cart<br /><? echo $_SESSION['cart']->count_contents();?> item(s) - <? echo $currencies->format($_SESSION['cart']->show_total());?></div>

    file (tpl_header.php) is located at Includes > Templates > YOUR TEMPLATE > Common

  3. #563
    Join Date
    Oct 2004
    Location
    Houston, TX
    Posts
    782
    Plugin Contributions
    4

    Default Re: Acadame - Another Professional Template

    Quote Originally Posted by 5hmedia View Post
    not sure how to link the actual image, but you can link the items/dollar amount line. post is http://www.zen-cart.com/forum/showpo...&postcount=513. basically, you are adding the following line of code:

    <a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>">

    so, it would look like this:

    <div id="cart_header" class="topBox">Shopping Cart<br /><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><? echo $_SESSION['cart']->count_contents();?> item(s) - <? echo $currencies->format($_SESSION['cart']->show_total());?></a></div>

    instead of this:

    <div id="cart_header" class="topBox">Shopping Cart<br /><? echo $_SESSION['cart']->count_contents();?> item(s) - <? echo $currencies->format($_SESSION['cart']->show_total());?></div>

    file (tpl_header.php) is located at Includes > Templates > YOUR TEMPLATE > Common
    Try this to link the image and the contents text:

    <div id="cart_header" class="topBox"><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"></a><aShopping Cart<br /><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><? echo $_SESSION['cart']->count_contents();?> item(s) - <? echo $currencies->format($_SESSION['cart']->show_total());?></a></div>

    Add this to your stylesheet:

    #cart_header a:link, #cart_header a:visited{
    display:block;
    height:30px;
    width:50px;
    margin-right:.4em;
    }

    You'll possible need to adjust #cart_header in your stylesheet as well.

    If this doesn't link the image, don't give up, search for the link in the header and apply the proper styles to the link. The link is in the code, invisible to your eyes so like I said you may have to search for it.

    Maybe 5h can give it a shot on NothingButTennis.

  4. #564
    Join Date
    Nov 2006
    Posts
    22
    Plugin Contributions
    0

    Default Re: Acadame - Another Professional Template

    Quote Originally Posted by testuser View Post
    Maybe 5h can give it a shot on NothingButTennis.
    that's too far over my head! i'll stick with just the items/dollar amount linked

    testuser, did you get my email??

  5. #565
    Join Date
    Oct 2004
    Location
    Houston, TX
    Posts
    782
    Plugin Contributions
    4

    Default Re: Acadame - Another Professional Template

    Quote Originally Posted by testuser View Post
    Try this to link the image and the contents text:

    <div id="cart_header" class="topBox"><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"></a><aShopping Cart<br /><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><? echo $_SESSION['cart']->count_contents();?> item(s) - <? echo $currencies->format($_SESSION['cart']->show_total());?></a></div>

    Add this to your stylesheet:

    #cart_header a:link, #cart_header a:visited{
    display:block;
    height:30px;
    width:50px;
    margin-right:.4em;
    }

    You'll possible need to adjust #cart_header in your stylesheet as well.

    If this doesn't link the image, don't give up, search for the link in the header and apply the proper styles to the link. The link is in the code, invisible to your eyes so like I said you may have to search for it.

    Maybe 5h can give it a shot on NothingButTennis.
    I don't know what I was thinking when I posted this ... but it should be:

    Try this to link the image and the contents text:

    Code:
     <div id="cart_header" class="topBox"><a id="carth_link" href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"></a>Shopping Cart<br /><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><? echo $_SESSION['cart']->count_contents();?> item(s) - <? echo $currencies->format($_SESSION['cart']->show_total());?></a></div>
    Add this to your stylesheet:

    Code:
    #carth_link{
    display:block;
    height:30px;
    width:50px;
    margin-right:.4em;
    }
    You'll possibly need to adjust #cart_header in your stylesheet as well. If that's the case, deplete the padding within #cart_header, then apply some right margin to the #carth_link style you just right. I've touched it with a simple margin already.

  6. #566
    Join Date
    Feb 2008
    Posts
    28
    Plugin Contributions
    0

    Default Re: Acadame - Another Professional Template

    Quote Originally Posted by Berserker View Post
    Hi,

    Can someone please tell me why my sideboxes are overlapping to the center content even when padding has been specified in Firefox but not in IE. It only happens with this template as I have tried it with my previous template and it was fine with that.

    Thx
    Sorry All, I've same problem with sidebox if I use opera browser, the same as Berserker's problem in firefox. I think it would be more excelent if these theme can give nice view in every browser that users used.

    how to fix this problem???

    I attached a sidebox's image that used in opera.

    Regards
    fireolg
    Attached Images Attached Images  

  7. #567
    Join Date
    Oct 2004
    Location
    Houston, TX
    Posts
    782
    Plugin Contributions
    4

    Default Re: Acadame - Another Professional Template

    Quote Originally Posted by fireolg View Post
    Sorry All, I've same problem with sidebox if I use opera browser, the same as Berserker's problem in firefox. I think it would be more excelent if these theme can give nice view in every browser that users used.

    how to fix this problem???

    I attached a sidebox's image that used in opera.

    Regards
    fireolg
    There's a fix for this in the thread.

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

  8. #568
    Join Date
    Feb 2008
    Posts
    28
    Plugin Contributions
    0

    Default Re: Acadame - Another Professional Template

    Quote Originally Posted by testuser View Post
    There's a fix for this in the thread.

    http://www.zen-cart.com/forum/showpo...&postcount=441
    Thank you testuser.

  9. #569
    Join Date
    Nov 2006
    Posts
    22
    Plugin Contributions
    0

    Default Re: Acadame - Another Professional Template

    can someone tell me why there are spacing issues when using bullets in the product description? without bullets, the text lines up fine. with bullets, the bullets end up overlapping the product image. see attachment.
    Attached Images Attached Images  

  10. #570
    Join Date
    Oct 2004
    Location
    Houston, TX
    Posts
    782
    Plugin Contributions
    4

    Default Re: Acadame - Another Professional Template

    Quote Originally Posted by 5hmedia View Post
    can someone tell me why there are spacing issues when using bullets in the product description? without bullets, the text lines up fine. with bullets, the bullets end up overlapping the product image. see attachment.
    Apply some margin to #productMainImage. May have to add it to your stylesheet.

    You'll need to margin it right.

 

 
Page 57 of 68 FirstFirst ... 747555657585967 ... LastLast

Similar Threads

  1. New to Zencart, using Acadame template
    By bellabel in forum Addon Templates
    Replies: 5
    Last Post: 27 Jun 2011, 07:52 PM
  2. Replies: 2
    Last Post: 16 Dec 2008, 03:44 AM
  3. Installing Acadame Template
    By jbreezy in forum Addon Templates
    Replies: 2
    Last Post: 19 Nov 2008, 11:29 AM
  4. Acadame Template Help
    By trisha1581 in forum Addon Templates
    Replies: 0
    Last Post: 13 May 2008, 08:44 PM
  5. Plz help me! Acadame Template
    By wardah15 in forum Templates, Stylesheets, Page Layout
    Replies: 14
    Last Post: 12 Feb 2008, 10:26 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