Page 2 of 5 FirstFirst 1234 ... LastLast
Results 11 to 20 of 46
  1. #11
    Join Date
    Feb 2006
    Posts
    39
    Plugin Contributions
    1

    Default Re: Wallet Template - Available to download

    The background color of the Sponsors box has been changed to match the template colors.

    Code:
    #bannerboxHeading {
    	background-color: #0000CC;
    	}
    to
    Code:
    #bannerboxHeading {
    	background-color: #9B7969;
    	}


    The left and right columns have been seperated (mostly to fix the left/right borders of those columns)
    Code:
    #navColumnOne, #navColumnTwo {
    	vertical-align: top;
    	background-color: #69829B;
    	border-top: 1px solid #795252;
    	border-right: 1px solid #795252;
    	}
    to
    Code:
    #navColumnOne {
    	vertical-align: top;
    	background-color: #69829B;
    	border-top: 1px solid #795252;
    	border-right: 1px solid #795252;
    	}
    
    #navColumnTwo {
    	vertical-align: top;
    	background-color: #69829B;
    	border-top: 1px solid #795252;
    	border-left: 1px solid #795252;
    	}

  2. #12
    Join Date
    Feb 2006
    Posts
    39
    Plugin Contributions
    1

    Default Re: Wallet Template - Available to download

    CSS Buttons

    I changed a LOT in the file
    stylesheet_css_buttons.css

    If your allready using the wallet theme and have made changes to it, I would still suggest downloading the newer version (anything past 1.2) and installing the file
    stylesheet_css_buttons.css
    to
    includes/templates/wallet/css

    The new sheet fixes the width and vertical alignment problems, and has been slightly recolored.

  3. #13
    Join Date
    Feb 2006
    Posts
    39
    Plugin Contributions
    1

    Default Re: Wallet Template - Available to download

    Sketchy!

    Validate the stylesheet - check.
    Fix the css buttons - check.
    Bit of "green" space - hrrrmm...

    What's the bit of green look like? Is it the same color green as elswhere on the page (like in the footer)?

    Did you install the header.php file that came with the template to the common folder?

    Is it mabye the categories tabs causing the space?

    Let me know or show me an example and I'll try and tackle it!

    Thanks!

    zami

  4. #14
    Join Date
    Feb 2006
    Posts
    39
    Plugin Contributions
    1

    Default Re: Wallet Template - Available to download

    Quote Originally Posted by FarmGrrl View Post
    The header width and height do not seem to be honored. My shop at http://www.three-elms.com/shop shows my header image spanning wider than yours did, even though I've kept the height and width the same as in your file. Changing those numbers doesn't seem to change the image size at all. Yes, I can scale my image, but it seems a little odd. Let me know if you need more info. Meanwhile I'll scale my image to a width of 724px. I guess the other option would be to make the content div wider.
    FarmGrrl,

    For the image you want to use, what are the height and width?

    Are you saying if you put in a small image (say something 300px wide) it gets stretched out?

    Did you enter in the height and width of your image in
    includes/languages/english/wallet/header.php ?

    You said for now you'll scale your image to 724, but when I look at your store, both the image itself, and the source code, are saying 758x95.

    Mabye I'm not understanding what is happening?

    To test a different logo size, I made a fresh store at
    http://www.planetofsand.com/CSSTEST/ (also tested some css here, hence the silly name) and put up a 400x150 logo, and also set 400 and 150 into the header.php file.
    It appears to be displaying correctly, without any stretching or resizing.

    Let me know if your still having the problem and any other details you can think of! I'll certainly try to help.

    -zami

  5. #15
    Join Date
    Oct 2006
    Posts
    17
    Plugin Contributions
    0

    Default Re: Wallet Template - Available to download

    Maybe I misunderstood it, because I wanted it to shrink my image to the width specified in the file. I looked at your logo.gif and changed my image width to match it, so it looks fine. I had thought that the width and height in the header file would change the definition of width and height in the stylesheet, thus resizing the image.

  6. #16
    Join Date
    Feb 2006
    Posts
    39
    Plugin Contributions
    1

    Default Re: Wallet Template - Available to download

    ah HAH!

    I think I understand what your explaining now.
    You have an image that is (just as an example) 300x 50
    and you want the broswer to stretch it to the dimensions you specified in header.php?

    It seems like that should work but I tried it on my little test page, and sure enough, telling the header.php that my 400x150 picture is really 800x50 did... nothing.

    But! You CAN do this in
    includes/templates/wallet/common/tpl_header.php

    You'll have to take out the snippet of code that calls for the logo and put in static html for the image.

    So! (First, make a backup copy of tpl_header.php and tuck it away somewhere for good measure.)

    In the tpl_header.php file, around line 69
    delete
    Code:
    <div id="logo"><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . '</a>'; ?></div>
    and insert (after changing what's in red to your specifications)
    Code:
    <div id="logo">
    <img src="http://www.three-elms.com/shop/includes/templates/wallet/images/banner.jpg" alt="alternate text here or leave blank" width="XXX" height="XXX" align="baseline" border="0" />
    </div>
    This seems to work fine! In a test store I told tpl_header.php to display my 758x124 logo at 200x200, and indeed it squished it down to 200x200
    http://www.planetofsand.com/CSSTEST/

    Let me know if this works for you?

    Thanks!
    zami

  7. #17
    Join Date
    Oct 2006
    Posts
    17
    Plugin Contributions
    0

    Default Re: Wallet Template - Available to download

    Hi Zami,

    I'm sure it would work, but I don't actually need it since I resized my image. :) Can you let us know if all your changes have been incorporated into the current download?

  8. #18
    Join Date
    Feb 2006
    Posts
    39
    Plugin Contributions
    1

    Default Re: Wallet Template - Available to download

    Quote Originally Posted by FarmGrrl View Post
    Hi Zami,

    I'm sure it would work, but I don't actually need it since I resized my image. :) Can you let us know if all your changes have been incorporated into the current download?
    Heh, well I guess that would explain why your page and logo looked fine (actually quite lovely) when I looked to see what the problem was! I'm glad you got it worked out. It might be for the best that you resized your image yourself anyhow, as browsers seem so poor at resizing images without 'uglifying' them.

    The current Wallet download is all up-to-date, and I have no plans for any changes untill someone points out something broken. ::crossing my fingers::

    (Actually I might re-organize the stylesheet so it's a little easier to navigate, but I wont be making any actual changes to it, so there wont be any need to 'upgrade' to it. )

    Again, I'm glad you got everything worked out.

    -zami

  9. #19
    Join Date
    May 2006
    Location
    Texas
    Posts
    565
    Plugin Contributions
    4

    Default Re: Wallet Template - Available to download

    zami,

    Thanks again for the great template.. hopefully itll work well on a client's site :) I think this template will work well for them

  10. #20
    Join Date
    Dec 2006
    Location
    Great Yarmouth, UK
    Posts
    14
    Plugin Contributions
    0

    Default Re: Wallet Template - Available to download

    How would i go about changing the buttons for this template?

    I've seen the buttons are in the include\templates\TEMPLATENAME\buttons\english folder but this does not seem to be on this template?
    http://www.hostile-records.co.uk
    Punk-Metal-Ska
    Music-Clothing-Accessories

 

 
Page 2 of 5 FirstFirst 1234 ... 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. BecaBerry Template [Support Thread]
    By brandonturpin in forum Addon Templates
    Replies: 35
    Last Post: 14 Jun 2015, 09:35 AM
  3. Scuro Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 11
    Last Post: 12 Mar 2015, 09:45 PM
  4. Rustic Template Support Thread
    By clydejones in forum Addon Templates
    Replies: 320
    Last Post: 20 May 2013, 10:47 AM
  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
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR