Page 217 of 326 FirstFirst ... 117167207215216217218219227267317 ... LastLast
Results 2,161 to 2,170 of 3251
  1. #2161
    Join Date
    Oct 2008
    Posts
    6
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    where i change the distance from top to the brower bar.

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

    Default Re: Cherry Zen Template Side Box Login

    Quote Originally Posted by FoodDudes View Post
    I have successfully uploaded a login to the side box but am having troubles with the appearance of the forms. Here is the script and the screen shot is attached. Any suggestions would be greatly appreciated.

    <?php

    $content = "<!--loginSideBox-->";
    $content .= '<div id="' . str_replace('_', '-', $box_id . 'Content') . '" class="sideBoxContent">';

    if(!$_SESSION['customer_id']) {

    $content .=zen_draw_form('login_box', zen_href_link(FILENAME_LOGIN, 'action=process', 'SSL'));
    $content .=LOGIN_BOX_EMAIL_ADDRESS . '<br />' . zen_draw_input_field('email_address', '', 'size="24"').'<br />';
    $content .=LOGIN_BOX_PASSWORD . '<br />' . zen_draw_password_field('password', '', 'size="24"') . '<br />';
    $content .='<a href="' . zen_href_link(FILENAME_PASSWORD_FORGOTTEN, '', 'SSL') . '">' . LOGIN_BOX_PASSWORD_FORGOTTEN . '</a>' . '<br />' . '<a href="' . zen_href_link(FILENAME_LOGIN, '', 'SSL') . '">' . LOGIN_BOX_CREATE_ACCOUNT . '</a>' . '<br />';
    $content .= zen_draw_hidden_field('securityToken', $_SESSION['securityToken']);
    $content .='<div class="centeredContent">'.zen_image_submit(BUTTON_IMAGE_LOGIN, BUTTON_LOGIN_ALT).'</div>';
    $content .='</form>';
    } else {

    $content .= '<ul>';
    $content .= '<li><a class="loginBoxLinks" href="' . zen_href_link(FILENAME_ACCOUNT, '', 'SSL') . '">' . LOGIN_BOX_ACCOUNT . '</a></li>';
    $content .= '<li><a class="loginBoxLinks" href="' . zen_href_link(FILENAME_SHOPPING_CART, '', 'SSL') . '">' . LOGIN_BOX_SHOPPING_CART . '</a></li>';
    $content .= '<li><a class="loginBoxLinks" href="' . zen_href_link(FILENAME_LOGOFF, '', 'SSL') . '">' . LOGIN_BOX_LOGOFF . '</a></li>';
    $content .= '</ul>';
    }

    $content .= '</div>';

    ?>
    Try changing the size="24" to lower numbers.

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

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by sunny112233 View Post
    where i change the distance from top to the brower bar.
    in stylesheet.css , this section (change the margin-top)

    body {
    font-family: "Lucida Grande", tahoma, verdana, arial, helvetica, sans-serif;
    font-size:73.5%;
    margin-top:20px;
    }

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

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by newkernel View Post
    Thanks jetture.
    It's work!But the back color of the sidebox still show in the homepage.If I change the color to white,the box shape will lose.
    I was puzzled how to do it.Please help me!

    Code:
    #indexHomeBody #logoWrapper, #indexHomeBody #navColumnOne, #indexHomeBody #navColumnTwo, #indexHomeBody #navCatTabsWrapper, #indexHomeBody #navEZPagesTop {display:none;}
    #indexHomeBody .outer, #indexHomeBody #content {padding:0 0 0 1em!important;}
    #indexHomeBody #contentMainWrapper {
    	background:none;
    	background-color:#fff; /*background color for the main "content" of the site */
    }
    #indexHomeBody #contentMainWrapperb {
    	background: none;}
    }
    To get rid of the shadow on the home page only:
    Code:
    #indexHomeBody #nw, #indexHomeBody #ne, #indexHomeBody #se, #indexHomeBody #sw, #indexHomeBody #n, #indexHomeBody #s, #indexHomeBody #w, #indexHomeBody #e {background:none;}

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

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by frank18 View Post
    Hi Jade (and all),

    discovered this problem yesterday:

    When displaying the description of the products Active 2.1, Active 2.2 and Active 2.3 the LH sidebox appears below the actual description of the products.

    This does not happen on any of the other 250 something products I currently have on offer.

    I have tried to enter new content for the descriptions - same result.

    The other products in the category "Active Elements" are displayed OK with LH sidebox as normal. So, there is nothing wrong with any formatting of the actual category.

    The other weird thing is that on the product Active 2.4 all links in the sideboxes are bold. This is not really worrying but it is inconsistent and may leave the wrong impression about the store with some customers.

    Please take a look at

    Active 2.1

    http://frnt.org/zencart/index.php?ma...roducts_id=189

    Active 2.3

    Active 2.4

    and then click the NEXT button to see the appearance of the remaining products in this category.

    Can you shed a light on this please?

    If nothing materializes then I am planning to just delete the products and re-enter them. Would not solve the mystery but would probably fix the problem ....


    Thanks / Frank

    www.frnt.org/zencart
    Are you still having the left side issue? I notice that some of the products you have the text justified, and some you do not. As for the bold sideboxes, its because you didn't close the tags for some bold text. Check your text for errors.

  6. #2166
    Join Date
    Nov 2008
    Posts
    10
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    Code:
    #indexHomeBody #logoWrapper, #indexHomeBody #navColumnOne, #indexHomeBody #navColumnTwo, #indexHomeBody #navCatTabsWrapper, #indexHomeBody #navEZPagesTop {display:none;}
    #indexHomeBody .outer, #indexHomeBody #content {padding:0 0 0 1em!important;}
    #indexHomeBody #contentMainWrapper {
    	background:none;
    	background-color:#fff; /*background color for the main "content" of the site */
    }
    #indexHomeBody #contentMainWrapperb {
    	background: none;}
    }
    To get rid of the shadow on the home page only:
    Code:
    #indexHomeBody #nw, #indexHomeBody #ne, #indexHomeBody #se, #indexHomeBody #sw, #indexHomeBody #n, #indexHomeBody #s, #indexHomeBody #w, #indexHomeBody #e {background:none;}
    Thanks jade,I almost finish my job by your help.

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

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by darktowerhobbies View Post
    ok I have removed the text in the banner window on the top of the page by reading the readme first or else. The trouble is now it only displayes where the image is not the image. I have moved the image to different directories and still nothing.

    Should define('HEADER_SALES_TEXT', be replaced with something else since it is no longer text but an image.

    I have read other similar posts in here and seem to be having same trouble.

    the site is here

    Thanks in advance
    You can't just put the name of the image, since it is a spot for text. You have to first tell it that it is an image, and then what directory it is in. For example, if you put the image in includes/templates/YOUR_TEMPLATE/images/, put this:

    Code:
      define('HEADER_SALES_TEXT', '<img src="includes/templates/YOUR_TEMPLATE/images/banner.gif" alt="" width="" height=""  />');

  8. #2168
    Join Date
    Oct 2008
    Location
    Western Australia
    Posts
    20
    Plugin Contributions
    0

    bug Re: Gift Certificate button not in correct position.

    First of all congratulations on producing a really nice clean modern looking template.
    It's going to be perfect for my site !
    Thank you for being so generous in sharing and supporting it

    I think I may have found a little bug though.

    When I have a gift certificate enabled for a user and it is in the shopping cart. It appears to be too wide for the box and hangs out the side.

    I have not been able to reproduce it on your site as I can't buy a gift certificate.

    Keep up the great work !

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

    Default Re: Gift Certificate button not in correct position.

    Quote Originally Posted by fireant View Post
    First of all congratulations on producing a really nice clean modern looking template.
    It's going to be perfect for my site !
    Thank you for being so generous in sharing and supporting it

    I think I may have found a little bug though.

    When I have a gift certificate enabled for a user and it is in the shopping cart. It appears to be too wide for the box and hangs out the side.

    I have not been able to reproduce it on your site as I can't buy a gift certificate.

    Keep up the great work !
    Could I see a link or an image? Can you adjust the text (is the text too wide)?

  10. #2170
    Join Date
    Oct 2008
    Location
    Western Australia
    Posts
    20
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Site is locked down at the moment .. I don't want people visiting till it's ready but you can see a screen shot here.

    http://i476.photobucket.com/albums/r...ug/Capture.jpg

    Thanks for looking

    Edit: I made a login for you ... sending you details in PM
    Last edited by fireant; 6 Nov 2008 at 04:04 AM.

 

 

Similar Threads

  1. Simple Zen Template - Support Thread
    By jettrue in forum Addon Templates
    Replies: 461
    Last Post: 27 Apr 2013, 01:33 AM
  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. Mix Cherry Zen Template with Default template
    By Globie in forum General Questions
    Replies: 1
    Last Post: 31 Oct 2008, 08:21 PM

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