Thread: Logo Size

Results 1 to 4 of 4
  1. #1
    Join Date
    Dec 2012
    Posts
    1
    Plugin Contributions
    0

    Default Logo Size

    How do i go about changing my logo size and putting more to the left off my page? Also removing the picture of the dog on main page and replacing it with something else.
    My site is www.pamperedpetz.com.au

  2. #2
    Join Date
    Dec 2010
    Location
    UK
    Posts
    1,771
    Plugin Contributions
    3

    Default Re: Logo Size

    Use Firefox browser, install this https://addons.mozilla.org/en-US/fir...web-developer/ add-on to browser. Click images in your new toolbar then image path, it'll show you where doggy pic lives, just name your new pic the same as the dog pic is and overwrite the dog pic. That's the easiest (cheat?) way to do it.
    As for your logo simply resize the image to the size you desire and again just overwrite it. To adjust the position of it, go to your new toolbar again, this time CSS, then edit CSS. Look through your stylesheet.css for your logo.jpg and adjust the position to your taste. You will only be editing YOUR CURRENT view of the page, not the web version that we can see, once happy then simply apply the CSS changes to YOUR template stylesheet.css and save/overwrite.

  3. #3
    Join Date
    Jun 2005
    Location
    Cumbria, UK
    Posts
    10,266
    Plugin Contributions
    3

    Default Re: Logo Size

    Your logo IMAGE is VERY LARGE... 1,761px × 891px

    ... and it is then being FORCED into the LOGO WRAPPER to assume a size of 58 pixels high, by your site width (mainWrapper) of 969 pixels.

    Here's the evidence in the CSS:

    PHP Code:
    #logoWrapper{
        
    background-color#ffffff;
        
    height58px;
        }
    #logo {
        
    padding0.6em 0 0 0;

    PHP Code:
    #mainWrapper {
        
    background-color#FFFFFF;
        
    text-alignleft;
        
    vertical-aligntop;
        
    width969px;

    So what you are doing is FORCING a re-size of a very large logo (1,761 X 891) into a space that is much smaller and shallower (969 X 58).

    The NEXT most important consideration is that after the image has been forcibly re-sized by your CSS, the ASPECT RATIO has changed too.

    1,761 X 891 is (given a few decimal places) an ASPECT RATIO of 2 : 1

    969 X 58 is (given a few decimal places) an ASPECT RATIO of 17 : 1

    If I take your WHOLE LOGO as it currently stands (1,761 X 891) and reduce it to a height of 58 pixels AND maintain the aspect ratio, the WIDTH should be 114 pixels.

    But this just makes your logo look FAR TOO SMALL and indistinct.

    BEST SOLUTION is to RE-DESIGN your header logo from scratch, making it SHALLOWER and WIDER.

    ---------------------------------------------

    AH IGNORE WHAT I SAY ABOVE ... I see the real culprit...

    Some idiot called ANISH has decided to OVERWRITE CORE BEHAVIOUR on the template and FORCE the header into his own HARD-CODED HTML

    HTML Code:
    <!-- ANISH
    <div id="logoWrapper">
        <div id="logo"><a href="http://pamperedpetz.com.au/"><img src="includes/templates/black_pure_free/images/logo.gif" alt="Designed by 12leaves.com - ecommerce templates design services" title=" Designed by 12leaves.com - ecommerce templates design services " width="177" height="90" /></a></div>
    </div>
    <div class="clearBoth"></div>
    
    ANISH-->
    <div id="logoWrapper" style="width:944px;height:200px;overflow:hidden">
    
    <div style="width:943px;height:180px;overflow:hidden;margin-top:-10px;padding-top:0px;padding-bottom:2px;">
       <img src="http://pamperedpetz.com.au/images/logo.jpg" border="0" height="200" width="960" />
    </div>
    <!-- ANISH -->
    Fire Anish... he does not know zencart, or how to construct proper logo headers for this template.

    Ask him for a refund before you fire him.
    20 years a Zencart User

  4. #4
    Join Date
    Jun 2005
    Location
    Cumbria, UK
    Posts
    10,266
    Plugin Contributions
    3

    Default Re: Logo Size

    Here's a better sized image for your logo. It now measures 435 X 150

    Name:  pampered-pets.jpg
Views: 223
Size:  29.0 KB

    You will need to RESTORE CORE HEADER LOGO BEHAVIOUR, then use the stylesheets to apply desired look and feel (such as a full grey background to the header, and the exact position of the logo itself._
    20 years a Zencart User

 

 

Similar Threads

  1. Logo Size
    By Jonsey181 in forum Templates, Stylesheets, Page Layout
    Replies: 9
    Last Post: 4 Oct 2011, 09:51 PM
  2. Logo Size 100%
    By Crapples in forum General Questions
    Replies: 3
    Last Post: 12 Jun 2009, 04:24 PM
  3. Size of logo (in percents)
    By deathman in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 30 Jan 2009, 12:47 AM

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