Trying to make Logo smaller

Discussion in 'ButterBelly WordPress Theme' started by leonkill2000, Jul 31, 2015.

Thread Status:
Not open for further replies.
  1. leonkill2000

    leonkill2000 Member

    Joined:
    Jun 15, 2012
    Messages:
    96
    Likes Received:
    0
    I have my logo set to the left instead of the centre.
    No matter how small I make the logo (down to 100x100) it still sits at the same size, which is too big.
    The logo just gets fuzzy as their are less pixels.
    I have now uploaded a 250x250 logo.

    website is http://www.test2.websitemarketingfirst.com/

    Any way this can be changed ?

    cheers Leonie
     
  2. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi Leonie,

    I have checked your website and find that you are using some custom CSS in theme option ( given below ), which causes the issue.
    Code:
    .logo img {
    float: left !important;
    margin-left: -15px !important;
    margin-top: -5px !important;
    max-width: 34% !important;
    width: 26% !important;
    } 
    Please remove that code (above mentioned) and use the following code: -
    Code:
    .logo img {
        width: 250px;
    }
    Please increase/decrease the width according to your requirement.

    Hope it will resolve your issue :)

    Thanks,
    Praveen
     
  3. leonkill2000

    leonkill2000 Member

    Joined:
    Jun 15, 2012
    Messages:
    96
    Likes Received:
    0
    Hi Praveen

    The code you gave me was great for adjusting the size of the logo but then it centred the logo which I didn't want.

    I ended up using the original code and changed the code width: 26% !important; to 20%
    and the code margin-top: -5px !important; to +18
    and this is now sitting where I want it and the size I want.

    Thank you for your help
    You guys rock :)

    cheers Leonie
     
Thread Status:
Not open for further replies.

Share This Page