Page 10 of 21 FirstFirst ... 8910111220 ... LastLast
Results 91 to 100 of 201
  1. #91
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Logo Sidebox Help

    OK i see the man is here to help so I will just be quit.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  2. #92
    Join Date
    May 2007
    Posts
    471
    Plugin Contributions
    0

    Default Re: Logo Sidebox Help

    OK i see the man is here to help so I will just be quit.


    No need to be quiet silly--all help is always appreciated!!!!! I just knew this was something "weird"....I have been building sites with zen for about 3 years so I am pretty well versed...and I couldnt figure this simple thing out.....glad it turned out to be something I wouldnt have found anyway!!!!
    Jill || I Love Zen Cart Templates || 2 Dogs Design
    I Love To Help But Let's Keep It Public Please To Help Others!

  3. #93
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Logo Sidebox Help

    Quote Originally Posted by jill8026 View Post
    OK, well that worked! So the image is there and it is linking fine to the product....do I have to have that portion of the code in the tpl file? Very weird......thank you though....I would never have thought to delete that!
    Not sure what you mean by the highlighted portion.

    The link information is located in logo_sidebox_defines.php which is the proper file for the link definition.

  4. #94
    Join Date
    May 2007
    Posts
    471
    Plugin Contributions
    0

    Default Re: Logo Sidebox Help

    I just checked the site and for some reason the second option above is replacing the link option.

    It doesn't appear that it has been commented out properly.

    You could (as a temporary measure only) delete that second option completely to see if that fixes the problem.
    Thanks Clyde...my bolded part above was in reference to your quote above where you mentioned deleting the second options as a temporary measure only?

    Sounds like removing that part might be an issue if you are saying it can only be removed temporarily?!? If it is OK without it then I will leave it alone since it seems to be working fine!!!
    Jill || I Love Zen Cart Templates || 2 Dogs Design
    I Love To Help But Let's Keep It Public Please To Help Others!

  5. #95
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Logo Sidebox Help

    Quote Originally Posted by jill8026 View Post
    Thanks Clyde...my bolded part above was in reference to your quote above where you mentioned deleting the second options as a temporary measure only?

    Sounds like removing that part might be an issue if you are saying it can only be removed temporarily?!? If it is OK without it then I will leave it alone since it seems to be working fine!!!
    If it working, then I wouldn't worry about it.

  6. #96
    Join Date
    Jun 2009
    Posts
    1
    Plugin Contributions
    0

    Default Re: Logo Sidebox Help

    Hi

    I have read through all the posts in this thread and havent found what im looking for. I hope this is the right place to ask. I would like to know how to remove the stying from my logo sidebox. My logo shows.... but it has the same styling as my other side boxes How can i remove the styling from this box only. I dont want any padding or header around it.

    Thank you in advance

  7. #97
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Logo Sidebox Help

    Quote Originally Posted by DizzyLizzy View Post
    Hi

    I have read through all the posts in this thread and havent found what im looking for. I hope this is the right place to ask. I would like to know how to remove the stying from my logo sidebox. My logo shows.... but it has the same styling as my other side boxes How can i remove the styling from this box only. I dont want any padding or header around it.

    Thank you in advance
    URl for your site?

  8. #98
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Logo Sidebox Help

    Quote Originally Posted by DizzyLizzy View Post
    Hi

    I have read through all the posts in this thread and havent found what im looking for. I hope this is the right place to ask. I would like to know how to remove the stying from my logo sidebox. My logo shows.... but it has the same styling as my other side boxes How can i remove the styling from this box only. I dont want any padding or header around it.

    Thank you in advance
    You can add these statements to your stylesheet.css

    #logosidebox{
    margin: 0em;
    margin-top: 1.5em;
    border:none;
    }

    #logosideboxContent {
    text-align:center;
    }

    #logosideboxHeading{
    margin: 0;
    padding: 0;
    }

  9. #99
    Join Date
    May 2008
    Posts
    349
    Plugin Contributions
    0

    Default Re: Logo Sidebox Help

    Hi i just installed this mod, and my image displays great. I want it to link to another website, but iam unsure how to uncomment & comment the following file. Do i delete something??? Tried deleting the "//" but it than messes up my home page. Am i doing something wrong? Please advise thanks Thanks

    <?php
    //
    //Contribution: Logo Sidebox
    //Author: Clyde Jones (http://mysticmountainnaturals.com/testsite)
    //Version: 1.1
    //Updated: 8/21/2008
    //License: under the GPL - See attached License for info.
    //Based on: Blank Sidebox by Judi Cox - www.MommaMuse.com
    //Support: Only given via the forums, please. (http://www.zen-cart.com/forum/showthread.php?t=57694)
    // --------------------------------------------------
    // zen-cart Open Source E-commerce
    // Copyright (c) 2003-2006 The zen-cart developers
    // http://www.zen-cart.com/index.php
    // Portions Copyright (c) 2003 osCommerce
    // --------------------------------------------------
    // $Id: tpl_logo_sidebox.php,v 1.1 8/21/2008
    // --------------------------------------------------
    //
    // Link Option - uncomment this if you intend to use the logo as a link

    //$logoimage = '<a href="' . LOGO_SIDEBOX_LINK . '">' . zen_image($template->get_template_dir(LOGO_SIDEBOX_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . LOGO_SIDEBOX_IMAGE, LOGO_SIDEBOX_IMAGE_TEXT, LOGO_SIDEBOX_IMAGE_WIDTH, LOGO_SIDEBOX_IMAGE_HEIGHT) . '</a>';

    //comment this out if you use the above link option.
    $logoimage = zen_image($template->get_template_dir(LOGO_SIDEBOX_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . LOGO_SIDEBOX_IMAGE, LOGO_SIDEBOX_IMAGE_TEXT, LOGO_SIDEBOX_IMAGE_WIDTH, LOGO_SIDEBOX_IMAGE_HEIGHT);

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

    $content .= $logoimage;

    $content .= '</div>';
    ?>

  10. #100
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Logo Sidebox Help

    Quote Originally Posted by hcd888 View Post
    Hi i just installed this mod, and my image displays great. I want it to link to another website, but iam unsure how to uncomment & comment the following file. Do i delete something??? Tried deleting the "//" but it than messes up my home page. Am i doing something wrong? Please advise thanks Thanks

    <?php
    //
    //Contribution: Logo Sidebox
    //Author: Clyde Jones (http://mysticmountainnaturals.com/testsite)
    //Version: 1.1
    //Updated: 8/21/2008
    //License: under the GPL - See attached License for info.
    //Based on: Blank Sidebox by Judi Cox - www.MommaMuse.com
    //Support: Only given via the forums, please. (http://www.zen-cart.com/forum/showthread.php?t=57694)
    // --------------------------------------------------
    // zen-cart Open Source E-commerce
    // Copyright (c) 2003-2006 The zen-cart developers
    // http://www.zen-cart.com/index.php
    // Portions Copyright (c) 2003 osCommerce
    // --------------------------------------------------
    // $Id: tpl_logo_sidebox.php,v 1.1 8/21/2008
    // --------------------------------------------------
    //
    // Link Option - uncomment this if you intend to use the logo as a link

    //$logoimage = '<a href="' . LOGO_SIDEBOX_LINK . '">' . zen_image($template->get_template_dir(LOGO_SIDEBOX_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . LOGO_SIDEBOX_IMAGE, LOGO_SIDEBOX_IMAGE_TEXT, LOGO_SIDEBOX_IMAGE_WIDTH, LOGO_SIDEBOX_IMAGE_HEIGHT) . '</a>';

    //comment this out if you use the above link option.
    $logoimage = zen_image($template->get_template_dir(LOGO_SIDEBOX_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . LOGO_SIDEBOX_IMAGE, LOGO_SIDEBOX_IMAGE_TEXT, LOGO_SIDEBOX_IMAGE_WIDTH, LOGO_SIDEBOX_IMAGE_HEIGHT);

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

    $content .= $logoimage;

    $content .= '</div>';
    ?>
    Remove/delete these//$logoimage = '<a href="' . LOGO_SIDEBOX_LINK . '">' . zen_image($template->get_template_dir(LOGO_SIDEBOX_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . LOGO_SIDEBOX_IMAGE, LOGO_SIDEBOX_IMAGE_TEXT, LOGO_SIDEBOX_IMAGE_WIDTH, LOGO_SIDEBOX_IMAGE_HEIGHT) . '</a>';

    //comment this out if you use the above link option.
    add these //$logoimage = zen_image($template->get_template_dir(LOGO_SIDEBOX_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . LOGO_SIDEBOX_IMAGE, LOGO_SIDEBOX_IMAGE_TEXT, LOGO_SIDEBOX_IMAGE_WIDTH, LOGO_SIDEBOX_IMAGE_HEIGHT);

 

 
Page 10 of 21 FirstFirst ... 8910111220 ... LastLast

Similar Threads

  1. Center Logo Sidebox, Live Help?
    By gee38l in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 20 Dec 2008, 07:46 PM
  2. Replies: 1
    Last Post: 8 Dec 2008, 05:18 PM
  3. Replies: 0
    Last Post: 5 Nov 2007, 02:27 AM
  4. How do I center the Live Help logo in sidebox?
    By vivaraquel in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 29 Jul 2007, 09:23 AM
  5. Center Logo In sidebox, trust logo ?
    By [email protected] in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 27 Feb 2007, 05:35 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