Page 1 of 2 12 LastLast
Results 1 to 10 of 459

Hybrid View

  1. #1
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Alysa Rounded Template Support Thread

    Quote Originally Posted by irori View Post
    Thanks Anne,

    Main website is www.ishafairtrade.com.au
    cart is www.ishafairtrade.com.au/zencart

    Much appreciated..
    You can change the image includes/templates/alysa_rounded/images/top-nav-bk.jpg

    Thanks,

    Anne

  2. #2
    Join Date
    Jul 2007
    Location
    Middle of the UK
    Posts
    39
    Plugin Contributions
    0

    Default Re: Alysa Rounded Template Support Thread

    Hi!

    You helped me out with the Logo for my site, which will be used, but is currently a trial for a friends i am helping out with - Loaded the logo image, and changed the 'padding' from 15 to 0 - that helped line it all up, but the site still shows the language selector and a 'gap' above the logo - how do i remove the language selector and shift the header up?

    http://www.bellabakersboutique.co.uk

    Thanks x

  3. #3
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Alysa Rounded Template Support Thread

    Quote Originally Posted by scrapbook party View Post
    Hi!

    You helped me out with the Logo for my site, which will be used, but is currently a trial for a friends i am helping out with - Loaded the logo image, and changed the 'padding' from 15 to 0 - that helped line it all up, but the site still shows the language selector and a 'gap' above the logo - how do i remove the language selector and shift the header up?

    http://www.bellabakersboutique.co.uk

    Thanks x
    There are instructions in the alysa_rounded_readme.html file for turning on and off the languages and currencies in the header.

    Thanks,

    Anne

  4. #4
    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 change the image includes/templates/alysa_rounded/images/top-nav-bk.jpg

    Thanks,

    Anne
    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?

  5. #5
    Join Date
    Jun 2012
    Posts
    23
    Plugin Contributions
    0

    Default Re: Alysa Rounded Template Support Thread

    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! (:

  6. #6
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    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

  7. #7
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    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

  8. #8
    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 will need to edit the image in your image editing program, or you can remove it and use css.

    Thanks,

    Anne
    Ok I think I will try my own css () where are all the places I need to edit this css for all these area's to change from the 'image' to the 'css' for ALL of the box headers in the cart?

  9. #9
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Alysa Rounded Template Support Thread

    Quote Originally Posted by irori View Post
    Ok I think I will try my own css () where are all the places I need to edit this css for all these area's to change from the 'image' to the 'css' for ALL of the box headers in the cart?
    I would recommend using firebug to find this information.

    Thanks,

    Anne

  10. #10
    Join Date
    Jul 2012
    Location
    AZ USA
    Posts
    59
    Plugin Contributions
    0

    help question Re: Alysa Rounded Template Support Thread

    I am looking for some help .. I have the site at http://dezertdezinez.com/store . The link to the contact us is showing as HEADER_TITLE_CONTACT_US and I am not sure where to go to fix this .. any ideas would be greatly needed

    Debbie

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v150 aBagon Template Support Thread
    By VJef in forum Addon Templates
    Replies: 54
    Last Post: 5 Sep 2020, 08:44 PM
  2. Lavender Template Support Thread
    By kobra in forum Addon Templates
    Replies: 262
    Last Post: 13 May 2015, 01:00 AM
  3. TB Sempre Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 48
    Last Post: 19 Mar 2015, 06:33 PM
  4. Watermelon Template Support Thread
    By LissaE in forum Addon Templates
    Replies: 22
    Last Post: 14 Oct 2011, 04:03 AM
  5. DigitalShop Template Support Thread
    By blingthemes in forum Addon Templates
    Replies: 19
    Last Post: 9 Mar 2011, 07:49 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