• I have searched all the forums and can’t seem to find help for my issue!

    I am using an SKT Coffee theme and I’ve done a lot of customization in my style sheet. I am trying to make the logo bigger in both the header and footer. I’ve tried uploading larger versions of the logo, as well as changing px and padding in the stylesheet. Still no changes. If someone could help guide me where I am making the error and how I should change the stylesheet so the logo appears larger, I would be forever grateful!

    here is my site: https://www.thebloomexperience.org

    Alicen

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi
    The size of the LOGO is restricted by container LOGO
    it has this properties, there is no property for height
    I would not recommed to do much with it.
    It can destroy look of your site in different screen sizes.
    Maybe will try to do simpler and more appealing logo. size is set by default of the Theme coder. It is somewhere in PHP code
    You can try to contact Theme author, to give you some advice.

    .logo {
        float: left;
        z-index: 99;
        padding: 20px 0;
        color: #ffffff;
        width: 80%;
    }

    In the header you could put something like:
    .logo .custom-logo-link img {width:25%;}
    in there, but I’ll bet your Theme has a size set for the image you upload into that spot, so you’d just be stretching the small image into a bigger space (which looks grainy that way).

    The footer is a tight fit with those 4 columns, so there’s a limit to the tweaking. You could remove the margin and padding to beef it up a little, and then make the image fill up what space you have there, but again, the Theme might make the image grainy.

    .footerlogo {margin:0;padding:0;text-align:left;width:100%;}
    .footerlogo img {width:100%;}

    It is not my THEME man.
    But, if it is my theme I would not allow user to stretch logo to any size.
    Rest of the site has dependency.
    Contact THEME Author, will give you better picture.
    Cheers
    TR

    Agreed on that Tahoe, Theme author is the best place to start. Since original post referenced a lot of customization to the stylesheet I figured they were already all-in on tweaking.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to Make Logo Bigger’ is closed to new replies.