Page 36 of 44 FirstFirst ... 263435363738 ... LastLast
Results 351 to 360 of 437
  1. #351
    Join Date
    Jun 2012
    Posts
    8
    Plugin Contributions
    0

    Default Re: Alysa Rounded Template Support Thread

    Hi,
    I have had someone change the header for me. They left it too short and hanging off the page. Where can i find the original header size, fille type , etc of this template. I am just going to make a new header and change it. Thanks! I could not find this when I searched the forum..I really like the template, just going to play with the colors, after I fix the header.

    Bjames

  2. #352
    Join Date
    Jul 2009
    Location
    http://www.picaflor-azul.com
    Posts
    3,143
    Plugin Contributions
    35

    Default Re: Alysa Rounded Template Support Thread

    Quote Originally Posted by bjames View Post
    Hi,
    I have had someone change the header for me. They left it too short and hanging off the page. Where can i find the original header size, fille type , etc of this template. I am just going to make a new header and change it. Thanks! I could not find this when I searched the forum..I really like the template, just going to play with the colors, after I fix the header.

    Bjames
    If you post a link to your site I can take a look.

    Thanks,

    Anne
    Custom Zen Cart Design & Templates
    Enhance your site with our 25 Free Zen Cart Templates Plus 10 Free Zen Cart Modules.
    Check them out!

  3. #353
    Join Date
    Jul 2009
    Location
    http://www.picaflor-azul.com
    Posts
    3,143
    Plugin Contributions
    35

    Default Re: Alysa Rounded Template Support Thread

    Quote Originally Posted by irori View Post
    Thank you, will I need to edit this image in photoshop or such or is there another way to change the colors of the image?
    You will need to edit the image in your image editing program, or you can remove it and use css.

    Thanks,

    Anne
    Custom Zen Cart Design & Templates
    Enhance your site with our 25 Free Zen Cart Templates Plus 10 Free Zen Cart Modules.
    Check them out!

  4. #354
    Join Date
    Jul 2009
    Location
    http://www.picaflor-azul.com
    Posts
    3,143
    Plugin Contributions
    35

    Default Re: Alysa Rounded Template Support Thread

    Quote Originally Posted by lovets View Post
    Hi,

    How can i shift this whole code:

    <?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 } } ?>
    <li><img src="includes/templates/alysa_rounded/images/cart.jpg" class="cart-image" alt="the shopping cart" /><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?> - <?php echo $_SESSION['cart']->count_contents();?> item(s) - <?php echo $currencies->format($_SESSION['cart']->show_total());?></a> | </li>
    <li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
    <?php if ($_SESSION['cart']->count_contents() != 0) { ?>
    <?php }?>

    out of the id=navmain?

    I want to shift it out of the nav bar to the top but i realized that if i place it under navigation display my page loads with a blank page totally. I am guessing it has something to do with the IF portion because i tried shifting without that and it display fine with a text link. But i want it to work like it is when it is in the nav bar, such that the "My account" and "Log out" is only display when a customer logs in.

    I have tried various way to shift them but am stuck. I am new to this and does not know about html code.
    What else do i need to adjust, say in any other file, besides that section of code above? Please help!

    Thank you so much! (:
    If your php skills are not good, I would recommend moveing it using css instead.

    Thanks,

    Anne
    Custom Zen Cart Design & Templates
    Enhance your site with our 25 Free Zen Cart Templates Plus 10 Free Zen Cart Modules.
    Check them out!

  5. #355
    Join Date
    Jun 2012
    Posts
    8
    Plugin Contributions
    0

    Default Re: Alysa Rounded Template Support Thread

    Thank you , its embarrasing the way it looks, even from a newbie like me...!

    http://www.spiritsofthewestwind.com
    Last edited by bjames; 23 Jun 2012 at 02:33 PM. Reason: spelling

  6. #356
    Join Date
    Jul 2009
    Location
    http://www.picaflor-azul.com
    Posts
    3,143
    Plugin Contributions
    35

    Default Re: Alysa Rounded Template Support Thread

    Quote Originally Posted by bjames View Post
    Thank you , its embarrasing the way it looks, even from a newbie like me...!

    http://www.spiritsofthewestwind.com
    The first thing to do would be to resize your logo.png to 950 px wide because 950 is the width of the template. Then in the stylesheet.css file change this:

    Code:
    #tagline {color:#b5b5b5;font-size: 1.65em;text-align :left;text-transform:lowercase;vertical-align:bottom;margin-left:10px;margin-bottom:25px;}
    #logo {padding-top:15px;padding-left:15px;}
    to this:

    Code:
    #tagline {color:#b5b5b5;font-size: 1.65em;text-align :left;text-transform:lowercase;vertical-align:bottom;margin-left:10px;margin-bottom:25px;display:none;}
    #logo {padding-top:0px;padding-left:0px;}
    Thanks,

    Anne
    Custom Zen Cart Design & Templates
    Enhance your site with our 25 Free Zen Cart Templates Plus 10 Free Zen Cart Modules.
    Check them out!

  7. #357
    Join Date
    Jun 2012
    Posts
    8
    Plugin Contributions
    0

    Default Re: Alysa Rounded Template Support Thread

    Will do thanks so much!

  8. #358
    Join Date
    Jun 2012
    Posts
    42
    Plugin Contributions
    0

    Default Re: Alysa Rounded Template Support Thread

    I am looking at adding another 'page' to my shopping cart titled 'Main Website' which I want as a option in the top menu, When clicked I would like it to link directly back to my main website and out of the shopping cart. How should I go about this?
    I was guessing that I needed to create a new file 'define_main_website.php' in includes/languages/english/html_includes/alysa_rounded (which I could place the link in) I was guessing I would also needed to add it into the header.php but doing both of these things has not worked.
    so I must be going about it the wrong way?
    Thank you :)

  9. #359
    Join Date
    Jul 2009
    Location
    http://www.picaflor-azul.com
    Posts
    3,143
    Plugin Contributions
    35

    Default Re: Alysa Rounded Template Support Thread

    Quote Originally Posted by irori View Post
    I am looking at adding another 'page' to my shopping cart titled 'Main Website' which I want as a option in the top menu, When clicked I would like it to link directly back to my main website and out of the shopping cart. How should I go about this?
    I was guessing that I needed to create a new file 'define_main_website.php' in includes/languages/english/html_includes/alysa_rounded (which I could place the link in) I was guessing I would also needed to add it into the header.php but doing both of these things has not worked.
    so I must be going about it the wrong way?
    Thank you :)
    You can add your link to the includes/templates/alysa_rounded/common/tpl_header.php file.

    Thanks,

    Anne
    Custom Zen Cart Design & Templates
    Enhance your site with our 25 Free Zen Cart Templates Plus 10 Free Zen Cart Modules.
    Check them out!

  10. #360
    Join Date
    Jun 2012
    Posts
    42
    Plugin Contributions
    0

    Default Re: Alysa Rounded Template Support Thread

    Quote Originally Posted by picaflor-azul View Post
    You can add your link to the includes/templates/alysa_rounded/common/tpl_header.php file.

    Thanks,

    Anne
    I have added the following to create the new 'Main Website' tab (at line 91 underneath the code for the contact us tab)

    <li><?php echo '<a href="' . zen_href_link(FILENAME_MAIN_WEBSITE) . '">'; ?><?php echo HEADER_TITLE_MAIN_WEBSITE; ?></a> | </li>

    But am unsure as to where I should add my link...I have tried two different places and both times my whole cart disappeared

 

 
Page 36 of 44 FirstFirst ... 263435363738 ... LastLast

Similar Threads

  1. All Business template Support Thread
    By picaflor-azul in forum Addon Templates
    Replies: 966
    Last Post: 3 May 2013, 07:52 PM
  2. Simple Zen Template - Support Thread
    By jettrue in forum Addon Templates
    Replies: 461
    Last Post: 27 Apr 2013, 01:33 AM
  3. Lavender Template Support Thread
    By kobra in forum Addon Templates
    Replies: 248
    Last Post: 29 Jan 2012, 04:30 PM
  4. Glacial Age Template Support Thread
    By clydejones in forum Addon Templates
    Replies: 392
    Last Post: 22 Aug 2011, 04:15 PM
  5. DigitalShop Template Support Thread
    By blingthemes in forum Addon Templates
    Replies: 19
    Last Post: 9 Mar 2011, 07:49 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
  •