Page 13 of 21 FirstFirst ... 31112131415 ... LastLast
Results 121 to 130 of 201
  1. #121
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Logo Sidebox Help

    Quote Originally Posted by bkeaton View Post
    Thanks I got it working. Now I have several questions is there a way to center the images and spread the image spacing because they are so close together?
    first: add the following to your stylesheet.css

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

    #logosideboxContent {
    text-align:center;
    }

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

    second: add additional <br /> to the following in tpl_logo_sidebox.php:

    $content .= '<br />' . $logoimage1;
    $content .= '<br />br />' . $logoimage2;

  2. #122
    Join Date
    Aug 2007
    Location
    Amarillo, Tx
    Posts
    1,517
    Plugin Contributions
    0

    Default Re: Logo Sidebox Help

    [QUOTE=clydejones;829502]first: add the following to your stylesheet.css

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

    #logosideboxContent {
    text-align:center;
    }

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

    Can it be anywhere in the stylesheet or a specific spot?

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

    Default Re: Logo Sidebox Help

    [QUOTE=bkeaton;829504]
    Quote Originally Posted by clydejones View Post
    first: add the following to your stylesheet.css

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

    #logosideboxContent {
    text-align:center;
    }

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

    Can it be anywhere in the stylesheet or a specific spot?
    put it at the bottom of the stylesheet

  4. #124
    Join Date
    Aug 2007
    Location
    Amarillo, Tx
    Posts
    1,517
    Plugin Contributions
    0

    Default Re: Logo Sidebox Help

    Thank you clyde you da man

  5. #125
    Join Date
    Aug 2007
    Location
    Amarillo, Tx
    Posts
    1,517
    Plugin Contributions
    0

    Default Re: Logo Sidebox Help

    Hey Clyde,

    I just change my template to Cherry Zen I got the box up on the right side but it doesn't show my two logos here is what have in

    /includes/templates/Cherry Zen 1.7/sideboxes/tpl_logo_sidebox.php

    but nothing is there

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

    Default Re: Logo Sidebox Help

    Quote Originally Posted by bkeaton View Post
    Hey Clyde,

    I just change my template to Cherry Zen I got the box up on the right side but it doesn't show my two logos here is what have in

    /includes/templates/Cherry Zen 1.7/sideboxes/tpl_logo_sidebox.php

    but nothing is there
    I'm guessing you mean the "follow us on these sites" sidebox!

    did you copy the two images to the cherry_zen image folder?
    (includes/templates/Cherry Zen 1.7/images)

  7. #127
    Join Date
    Aug 2007
    Location
    Amarillo, Tx
    Posts
    1,517
    Plugin Contributions
    0

    Default Re: Logo Sidebox Help

    I got it fixed,,, I need it the images centered in the box take a look

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

    Default Re: Logo Sidebox Help

    Quote Originally Posted by bkeaton View Post
    I got it fixed,,, I need it the images centered in the box take a look
    add the following to your stylesheet.css

    #logosideboxContent {
    text-align:center;
    }

  9. #129
    Join Date
    Oct 2009
    Posts
    12
    Plugin Contributions
    0

    Default Re: Logo Sidebox Help

    Hi. I'm using the logo sidebox addon in combination with simple seo url mod. Because of some internet explorer problems not finding the correct path of folders with some seo urls, I need to put an absolute path to the logo image or at least add a leading slash in front of the relative location of the image, but I somehow don't manage to do it. In tpl_logo_sidebox.php I have the following lines:

    $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);

    What I need is simple, but I can't figure out how to do it. I need /includes/templates/theme181/images/Photo11.jpg instead of the current includes/templates/theme181/images/Photo11.jpg

    Here is a sample link of an internal page with the problem described: http://www.xn----7sbeocpcbufeok3buh....a/sofia-vienna

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

    Default Re: Logo Sidebox Help

    Quote Originally Posted by CP00 View Post
    Hi. I'm using the logo sidebox addon in combination with simple seo url mod. Because of some internet explorer problems not finding the correct path of folders with some seo urls, I need to put an absolute path to the logo image or at least add a leading slash in front of the relative location of the image, but I somehow don't manage to do it. In tpl_logo_sidebox.php I have the following lines:

    $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);

    What I need is simple, but I can't figure out how to do it. I need /includes/templates/theme181/images/Photo11.jpg instead of the current includes/templates/theme181/images/Photo11.jpg

    Here is a sample link of an internal page with the problem described: http://www.xn----7sbeocpcbufeok3buh....a/sofia-vienna
    You could try to hard code the information as follows: (no guarantees that this will work)

    $logoimage = '<img src="/includes/templates/theme181/images/Photo11.jpg" alt="" width="140" height="87" />';

 

 
Page 13 of 21 FirstFirst ... 31112131415 ... 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